From 804c5242c5ff5d200c0a51f1d2774f2f4b4273d7 Mon Sep 17 00:00:00 2001 From: Jefferson Casimir Date: Thu, 1 Feb 2024 09:48:55 -0500 Subject: [PATCH 01/10] Add samplingFrequency reference + Revised coefficients --- .../jsx/electrophysiologySessionView.js | 1 + .../src/eeglab/EEGLabSeriesProvider.tsx | 10 +- .../src/series/store/logic/highLowPass.tsx | 189 ++++++++++++++++-- .../src/series/store/state/dataset.tsx | 3 + 4 files changed, 178 insertions(+), 25 deletions(-) diff --git a/modules/electrophysiology_browser/jsx/electrophysiologySessionView.js b/modules/electrophysiology_browser/jsx/electrophysiologySessionView.js index b7a6bb37cb3..bcb2da4beda 100644 --- a/modules/electrophysiology_browser/jsx/electrophysiologySessionView.js +++ b/modules/electrophysiology_browser/jsx/electrophysiologySessionView.js @@ -368,6 +368,7 @@ class ElectrophysiologySessionView extends Component { annotations={annotations} electrodesURL={electrodesURL} physioFileID={this.state.database[i].file.id} + samplingFrequency={this.state.database[i].file.summary[0].value} > { epicMiddleware.run(rootEpic); - window.EEGLabSeriesProviderStore = this.store; - const { chunksURL, electrodesURL, @@ -67,8 +66,13 @@ class EEGLabSeriesProvider extends Component { annotations, physioFileID, limit, + samplingFrequency, } = props; + if (!window.EEGLabSeriesProviderStore) + window.EEGLabSeriesProviderStore = []; + window.EEGLabSeriesProviderStore[chunksURL] = this.store; + this.store.dispatch(setPhysioFileID(physioFileID)); /** 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..52c8965e10c 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,12 @@ 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 +180,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 +285,12 @@ 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..35472df7a54 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 @@ -33,6 +33,7 @@ export type Action = timeInterval: [number, number], seriesRange: [number, number], limit: number, + samplingFrequency: string, offsetIndex: number, } }; @@ -42,6 +43,7 @@ export type State = { channelMetadata: ChannelMetadata[], offsetIndex: number, limit: number, + samplingFrequency: string, epochs: Epoch[], filteredEpochs: number[], activeEpoch: number | null, @@ -69,6 +71,7 @@ export const datasetReducer = ( physioFileID: null, offsetIndex: 1, limit: DEFAULT_MAX_CHANNELS, + samplingFrequency: '', shapes: [], validSamples: [], timeInterval: [0, 1], From f91a53f016669c938d77fe9def6859b987ee88e8 Mon Sep 17 00:00:00 2001 From: Jefferson Casimir Date: Thu, 1 Feb 2024 10:24:16 -0500 Subject: [PATCH 02/10] Add multiple store references for cases with multiple recordings --- .../jsx/electrophysiologySessionView.js | 4 +++- .../src/eeglab/EEGLabSeriesProvider.tsx | 7 +++++-- .../src/series/components/EEGMontage.tsx | 10 +++++++++- .../src/series/components/ResponsiveViewer.tsx | 7 +++++-- .../src/series/components/SeriesRenderer.tsx | 5 +++++ .../src/series/store/logic/fetchChunks.tsx | 4 +++- .../src/series/store/logic/highLowPass.tsx | 8 ++++++-- 7 files changed, 36 insertions(+), 9 deletions(-) diff --git a/modules/electrophysiology_browser/jsx/electrophysiologySessionView.js b/modules/electrophysiology_browser/jsx/electrophysiologySessionView.js index bcb2da4beda..53b8c9b2c74 100644 --- a/modules/electrophysiology_browser/jsx/electrophysiologySessionView.js +++ b/modules/electrophysiology_browser/jsx/electrophysiologySessionView.js @@ -368,7 +368,9 @@ class ElectrophysiologySessionView extends Component { annotations={annotations} electrodesURL={electrodesURL} physioFileID={this.state.database[i].file.id} - samplingFrequency={this.state.database[i].file.summary[0].value} + samplingFrequency={ + this.state.database[i].file.summary[0].value + } > { samplingFrequency, } = props; - if (!window.EEGLabSeriesProviderStore) + if (!window.EEGLabSeriesProviderStore) { window.EEGLabSeriesProviderStore = []; + } + window.EEGLabSeriesProviderStore[chunksURL] = this.store; this.store.dispatch(setPhysioFileID(physioFileID)); @@ -115,6 +117,7 @@ class EEGLabSeriesProvider extends Component { timeInterval, seriesRange, limit, + samplingFrequency, }) ); this.store.dispatch(setChannels(emptyChannels( 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..76901d0ac94 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; @@ -303,11 +305,15 @@ const EEGMontage = ( mouseDown={dragStart} mouseUp={dragEnd} mouseLeave={dragEnd} + chunksURL={chunksURL} > : - + } @@ -340,6 +346,7 @@ const EEGMontage = ( EEGMontage.defaultProps = { montage: [], hidden: [], + chunksURL: '', }; export default connect( @@ -347,6 +354,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/ResponsiveViewer.tsx b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/ResponsiveViewer.tsx index 36ef450ef78..22661716963 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 @@ -13,6 +13,7 @@ type CProps = { mouseLeave?: (_: any) => void, children: any, showOverflow: boolean, + chunksURL: string, }; /** @@ -27,6 +28,7 @@ type CProps = { * @param root0.mouseLeave * @param root0.children * @param root0.showOverflow + * @param root0.chunksURL */ const ResponsiveViewer : FunctionComponent = ({ ref, @@ -37,7 +39,8 @@ const ResponsiveViewer : FunctionComponent = ({ mouseUp, mouseLeave, children, - showOverflow + showOverflow, + chunksURL, }) => { /** * @@ -51,7 +54,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() 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..ac9cb8caf85 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 @@ -79,6 +79,7 @@ type CProps = { timeSelection?: [number, number], setCursor: (number) => void, setRightPanel: (_: RightPanel) => void, + chunksURL: string, channels: Channel[], channelMetadata: ChannelMetadata[], hidden: number[], @@ -121,6 +122,7 @@ type CProps = { * @param root0.setCursor * @param root0.setRightPanel * @param root0.channels + * @param root0.chunksURL * @param root0.channelMetadata * @param root0.hidden * @param root0.epochs @@ -157,6 +159,7 @@ const SeriesRenderer: FunctionComponent = ({ timeSelection, setCursor, setRightPanel, + chunksURL, channels, channelMetadata, hidden, @@ -1168,6 +1171,7 @@ const SeriesRenderer: FunctionComponent = ({ mouseMove={updateCursorCallback} mouseDown={updateTimeSelectionCallback} showOverflow={showOverflow} + chunksURL={chunksURL} > { return (dispatch: (_: any) => void) => { const channels : Channel[] = []; - const filters: Filter[] = window.EEGLabSeriesProviderStore + const filters: Filter[] = window.EEGLabSeriesProviderStore[chunksData[0].chunksURL] .getState().filters; for (let index = 0; index < chunksData.length; index++) { const {channelIndex, chunks} : { @@ -207,6 +208,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/highLowPass.tsx b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/logic/highLowPass.tsx index 52c8965e10c..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 @@ -171,7 +171,9 @@ export const createLowPassFilterEpic = () => ( dispatch(setFilter({ key: 'lowPass', name: payload, - fn: R.curry(applyFilter)(LOW_PASS_FILTERS[payload].coefficients[samplingFrequency]), + fn: R.curry(applyFilter)( + LOW_PASS_FILTERS[payload].coefficients[samplingFrequency] + ), })); dispatch(updateViewedChunks()); }) @@ -290,7 +292,9 @@ export const createHighPassFilterEpic = () => ( dispatch(setFilter({ key: 'highPass', name: payload, - fn: R.curry(applyFilter)(HIGH_PASS_FILTERS[payload].coefficients[samplingFrequency]), + fn: R.curry(applyFilter)( + HIGH_PASS_FILTERS[payload].coefficients[samplingFrequency] + ), })); dispatch(updateViewedChunks()); }) From 8c0e437ba6be7746239e3558cd0affc1e67f3509 Mon Sep 17 00:00:00 2001 From: Jefferson Casimir Date: Thu, 1 Feb 2024 11:11:58 -0500 Subject: [PATCH 03/10] Satisfy linter --- .../src/series/store/logic/fetchChunks.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 ed7abe20038..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 @@ -31,8 +31,9 @@ export const loadChunks = (chunksData: FetchedChunks[]) => { return (dispatch: (_: any) => void) => { const channels : Channel[] = []; - const filters: Filter[] = window.EEGLabSeriesProviderStore[chunksData[0].chunksURL] - .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, From 2a6b8d4aa52aaed20b107c4a4a2d63b7853eaa1c Mon Sep 17 00:00:00 2001 From: Jefferson Casimir Date: Thu, 1 Feb 2024 11:20:04 -0500 Subject: [PATCH 04/10] Removed 'AssembledHED' column from RB inserts --- .../RB_files/RB_physiological_task_event.sql | 39704 ++++++++-------- 1 file changed, 19852 insertions(+), 19852 deletions(-) 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`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7885,5,5,'2019-08-21 15:10:37',1177.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 (7886,5,5,'2019-08-21 15:10:37',1178.414000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7887,5,5,'2019-08-21 15:10:37',1179.329000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7888,5,5,'2019-08-21 15:10:37',1180.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 (7889,5,5,'2019-08-21 15:10:37',1180.560000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7890,5,5,'2019-08-21 15:10:37',1181.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 (7891,5,5,'2019-08-21 15:10:37',1182.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 (7892,5,5,'2019-08-21 15:10:37',1182.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 (7893,5,5,'2019-08-21 15:10:37',1183.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 (7894,5,5,'2019-08-21 15:10:37',1183.708000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7895,5,5,'2019-08-21 15:10:37',1184.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 (7896,5,5,'2019-08-21 15:10:37',1185.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 (7897,5,5,'2019-08-21 15:10:37',1186.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 (7898,5,5,'2019-08-21 15:10:37',1186.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 (7899,5,5,'2019-08-21 15:10:37',1187.454000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7900,5,5,'2019-08-21 15:10:37',1188.419000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7901,5,5,'2019-08-21 15:10:37',1188.813000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7902,5,5,'2019-08-21 15:10:37',1189.235000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7903,5,5,'2019-08-21 15:10:37',1190.067000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7904,5,5,'2019-08-21 15:10:37',1191.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 (7905,5,5,'2019-08-21 15:10:37',1191.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 (7906,5,5,'2019-08-21 15:10:37',1192.831000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7907,5,5,'2019-08-21 15:10:37',1193.217000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7908,5,5,'2019-08-21 15:10:37',1193.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 (7909,5,5,'2019-08-21 15:10:37',1194.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 (7910,5,5,'2019-08-21 15:10:37',1194.612000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7911,5,5,'2019-08-21 15:10:37',1195.528000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7912,5,5,'2019-08-21 15:10:37',1196.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 (7913,5,5,'2019-08-21 15:10:37',1196.915000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7914,5,5,'2019-08-21 15:10:37',1197.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 (7915,5,5,'2019-08-21 15:10:37',1197.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 (7916,5,5,'2019-08-21 15:10:37',1198.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 (7917,5,5,'2019-08-21 15:10:37',1199.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 (7918,5,5,'2019-08-21 15:10:37',1200.156000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7919,5,5,'2019-08-21 15:10:37',1200.624000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7920,5,5,'2019-08-21 15:10:37',1201.089000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7921,5,5,'2019-08-21 15:10:37',1202.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 (7922,5,5,'2019-08-21 15:10:37',1202.970000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7923,5,5,'2019-08-21 15:10:37',1203.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 (7924,5,5,'2019-08-21 15:10:37',1204.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 (7925,5,5,'2019-08-21 15:10:37',1204.668000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7926,5,5,'2019-08-21 15:10:37',1205.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 (7927,5,5,'2019-08-21 15:10:37',1206.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 (7928,5,5,'2019-08-21 15:10:37',1206.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 (7929,5,5,'2019-08-21 15:10:37',1207.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 (7930,5,5,'2019-08-21 15:10:37',1208.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 (7931,5,5,'2019-08-21 15:10:37',1209.097000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7932,5,5,'2019-08-21 15:10:37',1209.461000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7933,5,5,'2019-08-21 15:10:37',1210.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 (7934,5,5,'2019-08-21 15:10:37',1210.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 (7935,5,5,'2019-08-21 15:10:37',1211.588000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7936,5,5,'2019-08-21 15:10:37',1211.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 (7937,5,5,'2019-08-21 15:10:37',1212.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 (7938,5,5,'2019-08-21 15:10:37',1213.608000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7939,5,5,'2019-08-21 15:10:37',1213.926000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7940,5,5,'2019-08-21 15:10:37',1214.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 (7941,5,5,'2019-08-21 15:10:37',1215.373000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7942,5,5,'2019-08-21 15:10:37',1216.272000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7943,5,5,'2019-08-21 15:10:37',1217.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 (7944,5,5,'2019-08-21 15:10:37',1218.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 (7945,5,5,'2019-08-21 15:10:37',1218.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 (7946,5,5,'2019-08-21 15:10:37',1219.086000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7947,5,5,'2019-08-21 15:10:37',1219.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 (7948,5,5,'2019-08-21 15:10:37',1219.985000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7949,5,5,'2019-08-21 15:10:37',1220.817000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7950,5,5,'2019-08-21 15:10:37',1221.600000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7951,5,5,'2019-08-21 15:10:37',1221.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 (7952,5,5,'2019-08-21 15:10:37',1222.532000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7953,5,5,'2019-08-21 15:10:37',1223.414000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7954,5,5,'2019-08-21 15:10:37',1223.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 (7955,5,5,'2019-08-21 15:10:37',1224.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 (7956,5,5,'2019-08-21 15:10:37',1225.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 (7957,5,5,'2019-08-21 15:10:37',1226.128000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7958,5,5,'2019-08-21 15:10:37',1227.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 (7959,5,5,'2019-08-21 15:10:37',1227.459000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7960,5,5,'2019-08-21 15:10:37',1228.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 (7961,5,5,'2019-08-21 15:10:37',1228.958000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7962,5,5,'2019-08-21 15:10:37',1229.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 (7963,5,5,'2019-08-21 15:10:37',1230.130000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7964,5,5,'2019-08-21 15:10:37',1230.540000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7965,5,5,'2019-08-21 15:10:37',1231.473000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7966,5,5,'2019-08-21 15:10:37',1232.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 (7967,5,5,'2019-08-21 15:10:37',1233.420000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7968,5,5,'2019-08-21 15:10:37',1233.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 (7969,5,5,'2019-08-21 15:10:37',1234.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 (7970,5,5,'2019-08-21 15:10:37',1235.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 (7971,5,5,'2019-08-21 15:10:37',1236.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 (7972,5,5,'2019-08-21 15:10:37',1236.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 (7973,5,5,'2019-08-21 15:10:37',1236.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 (7974,5,5,'2019-08-21 15:10:37',1237.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 (7975,5,5,'2019-08-21 15:10:37',1238.748000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7976,5,5,'2019-08-21 15:10:37',1239.078000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7977,5,5,'2019-08-21 15:10:37',1239.696000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7978,5,5,'2019-08-21 15:10:37',1240.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 (7979,5,5,'2019-08-21 15:10:37',1241.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 (7980,5,5,'2019-08-21 15:10:37',1242.127000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7981,5,5,'2019-08-21 15:10:37',1242.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 (7982,5,5,'2019-08-21 15:10:37',1242.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 (7983,5,5,'2019-08-21 15:10:37',1243.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 (7984,5,5,'2019-08-21 15:10:37',1244.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 (7985,5,5,'2019-08-21 15:10:37',1244.708000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7986,5,5,'2019-08-21 15:10:37',1245.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 (7987,5,5,'2019-08-21 15:10:37',1246.489000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7988,5,5,'2019-08-21 15:10:37',1247.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 (7989,5,5,'2019-08-21 15:10:37',1247.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 (7990,5,5,'2019-08-21 15:10:37',1248.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 (7991,5,5,'2019-08-21 15:10:37',1249.253000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7992,5,5,'2019-08-21 15:10:37',1250.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 (7993,5,5,'2019-08-21 15:10:37',1250.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 (7994,5,5,'2019-08-21 15:10:37',1251.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 (7995,5,5,'2019-08-21 15:10:37',1251.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 (7996,5,5,'2019-08-21 15:10:37',1252.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 (7997,5,5,'2019-08-21 15:10:37',1252.916000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7998,5,5,'2019-08-21 15:10:37',1253.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 (7999,5,5,'2019-08-21 15:10:37',1254.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 (8000,5,5,'2019-08-21 15:10:37',1255.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 (8001,5,5,'2019-08-21 15:10:37',1256.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 (8002,5,5,'2019-08-21 15:10:37',1256.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 (8003,5,5,'2019-08-21 15:10:37',1257.395000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8004,5,5,'2019-08-21 15:10:37',1257.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 (8005,5,5,'2019-08-21 15:10:37',1258.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 (8006,5,5,'2019-08-21 15:10:37',1258.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 (8007,5,5,'2019-08-21 15:10:37',1259.791000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8008,5,5,'2019-08-21 15:10:37',1260.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 (8009,5,5,'2019-08-21 15:10:37',1260.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 (8010,5,5,'2019-08-21 15:10:37',1261.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 (8011,5,5,'2019-08-21 15:10:37',1262.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 (8012,5,5,'2019-08-21 15:10:37',1263.221000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8013,5,5,'2019-08-21 15:10:37',1263.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 (8014,6,6,'2019-08-21 15:10:44',0.645000,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 (8015,6,6,'2019-08-21 15:10:44',19.205000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8016,6,6,'2019-08-21 15:10:44',19.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 (8017,6,6,'2019-08-21 15:10:44',20.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 (8018,6,6,'2019-08-21 15:10:44',21.120000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8019,6,6,'2019-08-21 15:10:44',21.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 (8020,6,6,'2019-08-21 15:10:44',22.868000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8021,6,6,'2019-08-21 15:10:44',23.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 (8022,6,6,'2019-08-21 15:10:44',23.667000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8023,6,6,'2019-08-21 15:10:44',24.482000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8024,6,6,'2019-08-21 15:10:44',24.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 (8025,6,6,'2019-08-21 15:10:44',25.332000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8026,6,6,'2019-08-21 15:10:44',26.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 (8027,6,6,'2019-08-21 15:10:44',26.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 (8028,6,6,'2019-08-21 15:10:44',27.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 (8029,6,6,'2019-08-21 15:10:44',27.929000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8030,6,6,'2019-08-21 15:10:44',28.878000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8031,6,6,'2019-08-21 15:10:44',29.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 (8032,6,6,'2019-08-21 15:10:44',30.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 (8033,6,6,'2019-08-21 15:10:44',31.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 (8034,6,6,'2019-08-21 15:10:44',32.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 (8035,6,6,'2019-08-21 15:10:44',33.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 (8036,6,6,'2019-08-21 15:10:44',33.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 (8037,6,6,'2019-08-21 15:10:44',33.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 (8038,6,6,'2019-08-21 15:10:44',34.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 (8039,6,6,'2019-08-21 15:10:44',34.950000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8040,6,6,'2019-08-21 15:10:44',35.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 (8041,6,6,'2019-08-21 15:10:44',36.569000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8042,6,6,'2019-08-21 15:10:44',37.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 (8043,6,6,'2019-08-21 15:10:44',37.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 (8044,6,6,'2019-08-21 15:10:44',38.484000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8045,6,6,'2019-08-21 15:10:44',39.417000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8046,6,6,'2019-08-21 15:10:44',40.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 (8047,6,6,'2019-08-21 15:10:44',41.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 (8048,6,6,'2019-08-21 15:10:44',42.214000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8049,6,6,'2019-08-21 15:10:44',42.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 (8050,6,6,'2019-08-21 15:10:44',43.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 (8051,6,6,'2019-08-21 15:10:44',43.945000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8052,6,6,'2019-08-21 15:10:44',44.877000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8053,6,6,'2019-08-21 15:10:44',45.308000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8054,6,6,'2019-08-21 15:10:44',45.876000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8055,6,6,'2019-08-21 15:10:44',46.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 (8056,6,6,'2019-08-21 15:10:44',47.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 (8057,6,6,'2019-08-21 15:10:44',47.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 (8058,6,6,'2019-08-21 15:10:44',48.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 (8059,6,6,'2019-08-21 15:10:44',49.489000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8060,6,6,'2019-08-21 15:10:44',49.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 (8061,6,6,'2019-08-21 15:10:44',50.488000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8062,6,6,'2019-08-21 15:10:44',51.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 (8063,6,6,'2019-08-21 15:10:44',52.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 (8064,6,6,'2019-08-21 15:10:44',53.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 (8065,6,6,'2019-08-21 15:10:44',54.101000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8066,6,6,'2019-08-21 15:10:44',55.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 (8067,6,6,'2019-08-21 15:10:44',55.463000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8068,6,6,'2019-08-21 15:10:44',55.998000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8069,6,6,'2019-08-21 15:10:44',56.392000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8070,6,6,'2019-08-21 15:10:44',56.964000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8071,6,6,'2019-08-21 15:10:44',57.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 (8072,6,6,'2019-08-21 15:10:44',58.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 (8073,6,6,'2019-08-21 15:10:44',58.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 (8074,6,6,'2019-08-21 15:10:44',59.678000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8075,6,6,'2019-08-21 15:10:44',60.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 (8076,6,6,'2019-08-21 15:10:44',61.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 (8077,6,6,'2019-08-21 15:10:44',61.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 (8078,6,6,'2019-08-21 15:10:44',62.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 (8079,6,6,'2019-08-21 15:10:44',63.341000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8080,6,6,'2019-08-21 15:10:44',64.123000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8081,6,6,'2019-08-21 15:10:44',65.089000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8082,6,6,'2019-08-21 15:10:44',65.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 (8083,6,6,'2019-08-21 15:10:44',66.315000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8084,6,6,'2019-08-21 15:10:44',66.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 (8085,6,6,'2019-08-21 15:10:44',67.254000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8086,6,6,'2019-08-21 15:10:44',67.902000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8087,6,6,'2019-08-21 15:10:44',68.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 (8088,6,6,'2019-08-21 15:10:44',69.183000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8089,6,6,'2019-08-21 15:10:44',69.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 (8090,6,6,'2019-08-21 15:10:44',70.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 (8091,6,6,'2019-08-21 15:10:44',70.929000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8092,6,6,'2019-08-21 15:10:44',71.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 (8093,6,6,'2019-08-21 15:10:44',72.331000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8094,6,6,'2019-08-21 15:10:44',73.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 (8095,6,6,'2019-08-21 15:10:44',74.195000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8096,6,6,'2019-08-21 15:10:44',74.532000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8097,6,6,'2019-08-21 15:10:44',75.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 (8098,6,6,'2019-08-21 15:10:44',75.794000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8099,6,6,'2019-08-21 15:10:44',76.659000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8100,6,6,'2019-08-21 15:10:44',77.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 (8101,6,6,'2019-08-21 15:10:44',77.944000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8102,6,6,'2019-08-21 15:10:44',78.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 (8103,6,6,'2019-08-21 15:10:44',79.390000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8104,6,6,'2019-08-21 15:10:44',80.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 (8105,6,6,'2019-08-21 15:10:44',81.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 (8106,6,6,'2019-08-21 15:10:44',81.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 (8107,6,6,'2019-08-21 15:10:44',82.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 (8108,6,6,'2019-08-21 15:10:44',83.069000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8109,6,6,'2019-08-21 15:10:44',83.365000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8110,6,6,'2019-08-21 15:10:44',83.968000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8111,6,6,'2019-08-21 15:10:44',84.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 (8112,6,6,'2019-08-21 15:10:44',85.334000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8113,6,6,'2019-08-21 15:10:44',85.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 (8114,6,6,'2019-08-21 15:10:44',86.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 (8115,6,6,'2019-08-21 15:10:44',87.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 (8116,6,6,'2019-08-21 15:10:44',88.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 (8117,6,6,'2019-08-21 15:10:44',88.663000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8118,6,6,'2019-08-21 15:10:44',89.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 (8119,6,6,'2019-08-21 15:10:44',90.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 (8120,6,6,'2019-08-21 15:10:44',91.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 (8121,6,6,'2019-08-21 15:10:44',91.825000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8122,6,6,'2019-08-21 15:10:44',92.259000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8123,6,6,'2019-08-21 15:10:44',92.612000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8124,6,6,'2019-08-21 15:10:44',93.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 (8125,6,6,'2019-08-21 15:10:44',93.907000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8126,6,6,'2019-08-21 15:10:44',94.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 (8127,6,6,'2019-08-21 15:10:44',95.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 (8128,6,6,'2019-08-21 15:10:44',96.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 (8129,6,6,'2019-08-21 15:10:44',97.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 (8130,6,6,'2019-08-21 15:10:44',97.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 (8131,6,6,'2019-08-21 15:10:44',98.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 (8132,6,6,'2019-08-21 15:10:44',98.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 (8133,6,6,'2019-08-21 15:10:44',99.284000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8134,6,6,'2019-08-21 15:10:44',100.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 (8135,6,6,'2019-08-21 15:10:44',100.436000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8136,6,6,'2019-08-21 15:10:44',101.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 (8137,6,6,'2019-08-21 15:10:44',101.932000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8138,6,6,'2019-08-21 15:10:44',102.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 (8139,6,6,'2019-08-21 15:10:44',102.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 (8140,6,6,'2019-08-21 15:10:44',103.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 (8141,6,6,'2019-08-21 15:10:44',104.712000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8142,6,6,'2019-08-21 15:10:44',105.578000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8143,6,6,'2019-08-21 15:10:44',106.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 (8144,6,6,'2019-08-21 15:10:44',107.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 (8145,6,6,'2019-08-21 15:10:44',108.524000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8146,6,6,'2019-08-21 15:10:44',109.424000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8147,6,6,'2019-08-21 15:10:44',109.794000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8148,6,6,'2019-08-21 15:10:44',110.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 (8149,6,6,'2019-08-21 15:10:44',110.772000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8150,6,6,'2019-08-21 15:10:44',111.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 (8151,6,6,'2019-08-21 15:10:44',112.271000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8152,6,6,'2019-08-21 15:10:44',113.036000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8153,6,6,'2019-08-21 15:10:44',113.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 (8154,6,6,'2019-08-21 15:10:44',114.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 (8155,6,6,'2019-08-21 15:10:44',115.094000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8156,6,6,'2019-08-21 15:10:44',115.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 (8157,6,6,'2019-08-21 15:10:44',116.032000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8158,6,6,'2019-08-21 15:10:44',116.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 (8159,6,6,'2019-08-21 15:10:44',117.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 (8160,6,6,'2019-08-21 15:10:44',117.759000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8161,6,6,'2019-08-21 15:10:44',118.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 (8162,6,6,'2019-08-21 15:10:44',119.130000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8163,6,6,'2019-08-21 15:10:44',119.575000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8164,6,6,'2019-08-21 15:10:44',119.995000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8165,6,6,'2019-08-21 15:10:44',120.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 (8166,6,6,'2019-08-21 15:10:44',121.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 (8167,6,6,'2019-08-21 15:10:44',122.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 (8168,6,6,'2019-08-21 15:10:44',122.526000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8169,6,6,'2019-08-21 15:10:44',123.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 (8170,6,6,'2019-08-21 15:10:44',124.240000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8171,6,6,'2019-08-21 15:10:44',124.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 (8172,6,6,'2019-08-21 15:10:44',125.023000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8173,6,6,'2019-08-21 15:10:44',125.872000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8174,6,6,'2019-08-21 15:10:44',126.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 (8175,6,6,'2019-08-21 15:10:44',127.620000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8176,6,6,'2019-08-21 15:10:44',128.065000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8177,6,6,'2019-08-21 15:10:44',128.453000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8178,6,6,'2019-08-21 15:10:44',129.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 (8179,6,6,'2019-08-21 15:10:44',130.151000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8180,6,6,'2019-08-21 15:10:44',130.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 (8181,6,6,'2019-08-21 15:10:44',130.934000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8182,6,6,'2019-08-21 15:10:44',131.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 (8183,6,6,'2019-08-21 15:10:44',132.881000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8184,6,6,'2019-08-21 15:10:44',133.233000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8185,6,6,'2019-08-21 15:10:44',133.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 (8186,6,6,'2019-08-21 15:10:44',134.529000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8187,6,6,'2019-08-21 15:10:44',134.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 (8188,6,6,'2019-08-21 15:10:44',135.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 (8189,6,6,'2019-08-21 15:10:44',136.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 (8190,6,6,'2019-08-21 15:10:44',137.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 (8191,6,6,'2019-08-21 15:10:44',137.876000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8192,6,6,'2019-08-21 15:10:44',138.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 (8193,6,6,'2019-08-21 15:10:44',138.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 (8194,6,6,'2019-08-21 15:10:44',139.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 (8195,6,6,'2019-08-21 15:10:44',140.323000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8196,6,6,'2019-08-21 15:10:44',140.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 (8197,6,6,'2019-08-21 15:10:44',141.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 (8198,6,6,'2019-08-21 15:10:44',142.071000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8199,6,6,'2019-08-21 15:10:44',142.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 (8200,6,6,'2019-08-21 15:10:44',143.736000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8201,6,6,'2019-08-21 15:10:44',144.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 (8202,6,6,'2019-08-21 15:10:44',144.651000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8203,6,6,'2019-08-21 15:10:44',145.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 (8204,6,6,'2019-08-21 15:10:44',146.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 (8205,6,6,'2019-08-21 15:10:44',146.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 (8206,6,6,'2019-08-21 15:10:44',147.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 (8207,6,6,'2019-08-21 15:10:44',148.397000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8208,6,6,'2019-08-21 15:10:44',149.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 (8209,6,6,'2019-08-21 15:10:44',150.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 (8210,6,6,'2019-08-21 15:10:44',150.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 (8211,6,6,'2019-08-21 15:10:44',151.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 (8212,6,6,'2019-08-21 15:10:44',152.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 (8213,6,6,'2019-08-21 15:10:44',152.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 (8214,6,6,'2019-08-21 15:10:44',152.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 (8215,6,6,'2019-08-21 15:10:44',153.875000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8216,6,6,'2019-08-21 15:10:44',154.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 (8217,6,6,'2019-08-21 15:10:44',155.260000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8218,6,6,'2019-08-21 15:10:44',155.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 (8219,6,6,'2019-08-21 15:10:44',156.400000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8220,6,6,'2019-08-21 15:10:44',156.771000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8221,6,6,'2019-08-21 15:10:44',157.737000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8222,6,6,'2019-08-21 15:10:44',158.670000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8223,6,6,'2019-08-21 15:10:44',159.035000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8224,6,6,'2019-08-21 15:10:44',159.619000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8225,6,6,'2019-08-21 15:10:44',160.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 (8226,6,6,'2019-08-21 15:10:44',161.434000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8227,6,6,'2019-08-21 15:10:44',162.332000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8228,6,6,'2019-08-21 15:10:44',162.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 (8229,6,6,'2019-08-21 15:10:44',163.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 (8230,6,6,'2019-08-21 15:10:44',164.114000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8231,6,6,'2019-08-21 15:10:44',165.079000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8232,6,6,'2019-08-21 15:10:44',166.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 (8233,6,6,'2019-08-21 15:10:44',166.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 (8234,6,6,'2019-08-21 15:10:44',166.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 (8235,6,6,'2019-08-21 15:10:44',167.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 (8236,6,6,'2019-08-21 15:10:44',168.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 (8237,6,6,'2019-08-21 15:10:44',168.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 (8238,6,6,'2019-08-21 15:10:44',169.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 (8239,6,6,'2019-08-21 15:10:44',170.341000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8240,6,6,'2019-08-21 15:10:44',170.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 (8241,6,6,'2019-08-21 15:10:44',171.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 (8242,6,6,'2019-08-21 15:10:44',171.988000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8243,6,6,'2019-08-21 15:10:44',172.290000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8244,6,6,'2019-08-21 15:10:44',172.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 (8245,6,6,'2019-08-21 15:10:44',173.837000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8246,6,6,'2019-08-21 15:10:44',174.752000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8247,6,6,'2019-08-21 15:10:44',175.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 (8248,6,6,'2019-08-21 15:10:44',175.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 (8249,6,6,'2019-08-21 15:10:44',176.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 (8250,6,6,'2019-08-21 15:10:44',177.024000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8251,6,6,'2019-08-21 15:10:44',177.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 (8252,6,6,'2019-08-21 15:10:44',178.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 (8253,6,6,'2019-08-21 15:10:44',179.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 (8254,6,6,'2019-08-21 15:10:44',180.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 (8255,6,6,'2019-08-21 15:10:44',180.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 (8256,6,6,'2019-08-21 15:10:44',181.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 (8257,6,6,'2019-08-21 15:10:44',181.861000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8258,6,6,'2019-08-21 15:10:44',182.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 (8259,6,6,'2019-08-21 15:10:44',183.626000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8260,6,6,'2019-08-21 15:10:44',184.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 (8261,6,6,'2019-08-21 15:10:44',184.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 (8262,6,6,'2019-08-21 15:10:44',185.474000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8263,6,6,'2019-08-21 15:10:44',186.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 (8264,6,6,'2019-08-21 15:10:44',186.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 (8265,6,6,'2019-08-21 15:10:44',187.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 (8266,6,6,'2019-08-21 15:10:44',188.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 (8267,6,6,'2019-08-21 15:10:44',189.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 (8268,6,6,'2019-08-21 15:10:44',189.794000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8269,6,6,'2019-08-21 15:10:44',190.219000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8270,6,6,'2019-08-21 15:10:44',191.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 (8271,6,6,'2019-08-21 15:10:44',191.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 (8272,6,6,'2019-08-21 15:10:44',191.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 (8273,6,6,'2019-08-21 15:10:44',192.649000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8274,6,6,'2019-08-21 15:10:44',193.044000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8275,6,6,'2019-08-21 15:10:44',193.632000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8276,6,6,'2019-08-21 15:10:44',194.464000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8277,6,6,'2019-08-21 15:10:44',195.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 (8278,6,6,'2019-08-21 15:10:44',196.195000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8279,6,6,'2019-08-21 15:10:44',196.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 (8280,6,6,'2019-08-21 15:10:44',197.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 (8281,6,6,'2019-08-21 15:10:44',197.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 (8282,6,6,'2019-08-21 15:10:44',197.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 (8283,6,6,'2019-08-21 15:10:44',198.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 (8284,6,6,'2019-08-21 15:10:44',199.608000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8285,6,6,'2019-08-21 15:10:44',200.391000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8286,6,6,'2019-08-21 15:10:44',201.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 (8287,6,6,'2019-08-21 15:10:44',201.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 (8288,6,6,'2019-08-21 15:10:44',202.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 (8289,6,6,'2019-08-21 15:10:44',203.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 (8290,6,6,'2019-08-21 15:10:44',203.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 (8291,6,6,'2019-08-21 15:10:44',203.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 (8292,6,6,'2019-08-21 15:10:44',204.902000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8293,6,6,'2019-08-21 15:10:44',205.686000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8294,6,6,'2019-08-21 15:10:44',206.551000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8295,6,6,'2019-08-21 15:10:44',206.823000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8296,6,6,'2019-08-21 15:10:44',207.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 (8297,6,6,'2019-08-21 15:10:44',208.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 (8298,6,6,'2019-08-21 15:10:44',209.132000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8299,6,6,'2019-08-21 15:10:44',209.418000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8300,6,6,'2019-08-21 15:10:44',210.047000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8301,6,6,'2019-08-21 15:10:44',211.013000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8302,6,6,'2019-08-21 15:10:44',211.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 (8303,6,6,'2019-08-21 15:10:44',212.578000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8304,6,6,'2019-08-21 15:10:44',213.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 (8305,6,6,'2019-08-21 15:10:44',213.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 (8306,6,6,'2019-08-21 15:10:44',214.310000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8307,6,6,'2019-08-21 15:10:44',215.274000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8308,6,6,'2019-08-21 15:10:44',216.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 (8309,6,6,'2019-08-21 15:10:44',216.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 (8310,6,6,'2019-08-21 15:10:44',217.106000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8311,6,6,'2019-08-21 15:10:44',218.038000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8312,6,6,'2019-08-21 15:10:44',218.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 (8313,6,6,'2019-08-21 15:10:44',219.220000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8314,6,6,'2019-08-21 15:10:44',219.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 (8315,6,6,'2019-08-21 15:10:44',220.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 (8316,6,6,'2019-08-21 15:10:44',221.635000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8317,6,6,'2019-08-21 15:10:44',221.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 (8318,6,6,'2019-08-21 15:10:44',222.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 (8319,6,6,'2019-08-21 15:10:44',223.035000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8320,6,6,'2019-08-21 15:10:44',223.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 (8321,6,6,'2019-08-21 15:10:44',224.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 (8322,6,6,'2019-08-21 15:10:44',225.280000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8323,6,6,'2019-08-21 15:10:44',226.046000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8324,6,6,'2019-08-21 15:10:44',226.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 (8325,6,6,'2019-08-21 15:10:44',227.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 (8326,6,6,'2019-08-21 15:10:44',227.628000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8327,6,6,'2019-08-21 15:10:44',228.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 (8328,6,6,'2019-08-21 15:10:44',229.576000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8329,6,6,'2019-08-21 15:10:44',229.950000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8330,6,6,'2019-08-21 15:10:44',230.541000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8331,6,6,'2019-08-21 15:10:44',231.374000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8332,6,6,'2019-08-21 15:10:44',231.838000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8333,6,6,'2019-08-21 15:10:44',232.156000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8334,6,6,'2019-08-21 15:10:44',233.155000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8335,6,6,'2019-08-21 15:10:44',234.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 (8336,6,6,'2019-08-21 15:10:44',234.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 (8337,6,6,'2019-08-21 15:10:44',235.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 (8338,6,6,'2019-08-21 15:10:44',235.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 (8339,6,6,'2019-08-21 15:10:44',236.635000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8340,6,6,'2019-08-21 15:10:44',236.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 (8341,6,6,'2019-08-21 15:10:44',237.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 (8342,6,6,'2019-08-21 15:10:44',238.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 (8343,6,6,'2019-08-21 15:10:44',239.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 (8344,6,6,'2019-08-21 15:10:44',239.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 (8345,6,6,'2019-08-21 15:10:44',240.181000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8346,6,6,'2019-08-21 15:10:44',241.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 (8347,6,6,'2019-08-21 15:10:44',241.367000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8348,6,6,'2019-08-21 15:10:44',241.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 (8349,6,6,'2019-08-21 15:10:44',242.895000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8350,6,6,'2019-08-21 15:10:44',243.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 (8351,6,6,'2019-08-21 15:10:44',244.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 (8352,6,6,'2019-08-21 15:10:44',245.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 (8353,6,6,'2019-08-21 15:10:44',245.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 (8354,6,6,'2019-08-21 15:10:44',246.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 (8355,6,6,'2019-08-21 15:10:44',246.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 (8356,6,6,'2019-08-21 15:10:44',247.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 (8357,6,6,'2019-08-21 15:10:44',248.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 (8358,6,6,'2019-08-21 15:10:44',249.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 (8359,6,6,'2019-08-21 15:10:44',249.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 (8360,6,6,'2019-08-21 15:10:44',250.902000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8361,6,6,'2019-08-21 15:10:44',251.260000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8362,6,6,'2019-08-21 15:10:44',251.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 (8363,6,6,'2019-08-21 15:10:44',252.270000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8364,6,6,'2019-08-21 15:10:44',252.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 (8365,6,6,'2019-08-21 15:10:44',253.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 (8366,6,6,'2019-08-21 15:10:44',253.955000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8367,6,6,'2019-08-21 15:10:44',254.549000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8368,6,6,'2019-08-21 15:10:44',255.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 (8369,6,6,'2019-08-21 15:10:44',255.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 (8370,6,6,'2019-08-21 15:10:44',256.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 (8371,6,6,'2019-08-21 15:10:44',257.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 (8372,6,6,'2019-08-21 15:10:44',258.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 (8373,6,6,'2019-08-21 15:10:44',258.488000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8374,6,6,'2019-08-21 15:10:44',259.044000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8375,6,6,'2019-08-21 15:10:44',259.876000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8376,6,6,'2019-08-21 15:10:44',260.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 (8377,6,6,'2019-08-21 15:10:44',261.112000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8378,6,6,'2019-08-21 15:10:44',261.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 (8379,6,6,'2019-08-21 15:10:44',262.474000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8380,6,6,'2019-08-21 15:10:44',262.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 (8381,6,6,'2019-08-21 15:10:44',263.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 (8382,6,6,'2019-08-21 15:10:44',264.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 (8383,6,6,'2019-08-21 15:10:44',265.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 (8384,6,6,'2019-08-21 15:10:44',265.970000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8385,6,6,'2019-08-21 15:10:44',266.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 (8386,6,6,'2019-08-21 15:10:44',267.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 (8387,6,6,'2019-08-21 15:10:44',268.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 (8388,6,6,'2019-08-21 15:10:44',268.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 (8389,6,6,'2019-08-21 15:10:44',269.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 (8390,6,6,'2019-08-21 15:10:44',269.682000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8391,6,6,'2019-08-21 15:10:44',270.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 (8392,6,6,'2019-08-21 15:10:44',270.823000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8393,6,6,'2019-08-21 15:10:44',271.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 (8394,6,6,'2019-08-21 15:10:44',272.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 (8395,6,6,'2019-08-21 15:10:44',272.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 (8396,6,6,'2019-08-21 15:10:44',273.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 (8397,6,6,'2019-08-21 15:10:44',274.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 (8398,6,6,'2019-08-21 15:10:44',275.113000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8399,6,6,'2019-08-21 15:10:44',275.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 (8400,6,6,'2019-08-21 15:10:44',276.658000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8401,6,6,'2019-08-21 15:10:44',277.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 (8402,6,6,'2019-08-21 15:10:44',277.850000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8403,6,6,'2019-08-21 15:10:44',278.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 (8404,6,6,'2019-08-21 15:10:44',279.321000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8405,6,6,'2019-08-21 15:10:44',279.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 (8406,6,6,'2019-08-21 15:10:44',280.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 (8407,6,6,'2019-08-21 15:10:44',281.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 (8408,6,6,'2019-08-21 15:10:44',281.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 (8409,6,6,'2019-08-21 15:10:44',282.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 (8410,6,6,'2019-08-21 15:10:44',283.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 (8411,6,6,'2019-08-21 15:10:44',283.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 (8412,6,6,'2019-08-21 15:10:44',284.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 (8413,6,6,'2019-08-21 15:10:44',284.805000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8414,6,6,'2019-08-21 15:10:44',285.415000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8415,6,6,'2019-08-21 15:10:44',298.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 (8416,6,6,'2019-08-21 15:10:44',316.221000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8417,6,6,'2019-08-21 15:10:44',317.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 (8418,6,6,'2019-08-21 15:10:44',318.151000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8419,6,6,'2019-08-21 15:10:44',318.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 (8420,6,6,'2019-08-21 15:10:44',319.134000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8421,6,6,'2019-08-21 15:10:44',319.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 (8422,6,6,'2019-08-21 15:10:44',320.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 (8423,6,6,'2019-08-21 15:10:44',320.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 (8424,6,6,'2019-08-21 15:10:44',321.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 (8425,6,6,'2019-08-21 15:10:44',322.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 (8426,6,6,'2019-08-21 15:10:44',323.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 (8427,6,6,'2019-08-21 15:10:44',323.760000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8428,6,6,'2019-08-21 15:10:44',324.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 (8429,6,6,'2019-08-21 15:10:44',324.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 (8430,6,6,'2019-08-21 15:10:44',325.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 (8431,6,6,'2019-08-21 15:10:44',326.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 (8432,6,6,'2019-08-21 15:10:44',326.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 (8433,6,6,'2019-08-21 15:10:44',327.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 (8434,6,6,'2019-08-21 15:10:44',327.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 (8435,6,6,'2019-08-21 15:10:44',328.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 (8436,6,6,'2019-08-21 15:10:44',328.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 (8437,6,6,'2019-08-21 15:10:44',329.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 (8438,6,6,'2019-08-21 15:10:44',330.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 (8439,6,6,'2019-08-21 15:10:44',331.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 (8440,6,6,'2019-08-21 15:10:44',332.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 (8441,6,6,'2019-08-21 15:10:44',332.985000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8442,6,6,'2019-08-21 15:10:44',333.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 (8443,6,6,'2019-08-21 15:10:44',333.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 (8444,6,6,'2019-08-21 15:10:44',334.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 (8445,6,6,'2019-08-21 15:10:44',334.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 (8446,6,6,'2019-08-21 15:10:44',335.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 (8447,6,6,'2019-08-21 15:10:44',336.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 (8448,6,6,'2019-08-21 15:10:44',337.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 (8449,6,6,'2019-08-21 15:10:44',338.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 (8450,6,6,'2019-08-21 15:10:44',339.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 (8451,6,6,'2019-08-21 15:10:44',340.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 (8452,6,6,'2019-08-21 15:10:44',340.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 (8453,6,6,'2019-08-21 15:10:44',341.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 (8454,6,6,'2019-08-21 15:10:44',341.976000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8455,6,6,'2019-08-21 15:10:44',342.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 (8456,6,6,'2019-08-21 15:10:44',342.808000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8457,6,6,'2019-08-21 15:10:44',343.292000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8458,6,6,'2019-08-21 15:10:44',343.607000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8459,6,6,'2019-08-21 15:10:44',344.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 (8460,6,6,'2019-08-21 15:10:44',345.205000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8461,6,6,'2019-08-21 15:10:44',346.071000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8462,6,6,'2019-08-21 15:10:44',347.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 (8463,6,6,'2019-08-21 15:10:44',347.441000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8464,6,6,'2019-08-21 15:10:44',348.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 (8465,6,6,'2019-08-21 15:10:44',349.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 (8466,6,6,'2019-08-21 15:10:44',349.339000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8467,6,6,'2019-08-21 15:10:44',350.000000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8468,6,6,'2019-08-21 15:10:44',350.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 (8469,6,6,'2019-08-21 15:10:44',351.748000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8470,6,6,'2019-08-21 15:10:44',352.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 (8471,6,6,'2019-08-21 15:10:44',352.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 (8472,6,6,'2019-08-21 15:10:44',353.513000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8473,6,6,'2019-08-21 15:10:44',353.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 (8474,6,6,'2019-08-21 15:10:44',354.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 (8475,6,6,'2019-08-21 15:10:44',355.261000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8476,6,6,'2019-08-21 15:10:44',355.578000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8477,6,6,'2019-08-21 15:10:44',356.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 (8478,6,6,'2019-08-21 15:10:44',357.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 (8479,6,6,'2019-08-21 15:10:44',357.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 (8480,6,6,'2019-08-21 15:10:44',358.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 (8481,6,6,'2019-08-21 15:10:44',359.523000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8482,6,6,'2019-08-21 15:10:44',360.322000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8483,6,6,'2019-08-21 15:10:44',361.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 (8484,6,6,'2019-08-21 15:10:44',361.483000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8485,6,6,'2019-08-21 15:10:44',361.954000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8486,6,6,'2019-08-21 15:10:44',362.352000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8487,6,6,'2019-08-21 15:10:44',362.836000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8488,6,6,'2019-08-21 15:10:44',363.686000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8489,6,6,'2019-08-21 15:10:44',364.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 (8490,6,6,'2019-08-21 15:10:44',364.634000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8491,6,6,'2019-08-21 15:10:44',365.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 (8492,6,6,'2019-08-21 15:10:44',366.565000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8493,6,6,'2019-08-21 15:10:44',367.531000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8494,6,6,'2019-08-21 15:10:44',367.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 (8495,6,6,'2019-08-21 15:10:44',368.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 (8496,6,6,'2019-08-21 15:10:44',369.179000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8497,6,6,'2019-08-21 15:10:44',369.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 (8498,6,6,'2019-08-21 15:10:44',370.944000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8499,6,6,'2019-08-21 15:10:44',371.315000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8500,6,6,'2019-08-21 15:10:44',371.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 (8501,6,6,'2019-08-21 15:10:44',372.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 (8502,6,6,'2019-08-21 15:10:44',373.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 (8503,6,6,'2019-08-21 15:10:44',373.791000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8504,6,6,'2019-08-21 15:10:44',374.689000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8505,6,6,'2019-08-21 15:10:44',375.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 (8506,6,6,'2019-08-21 15:10:44',375.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 (8507,6,6,'2019-08-21 15:10:44',376.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 (8508,6,6,'2019-08-21 15:10:44',377.486000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8509,6,6,'2019-08-21 15:10:44',378.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 (8510,6,6,'2019-08-21 15:10:44',379.418000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8511,6,6,'2019-08-21 15:10:44',379.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 (8512,6,6,'2019-08-21 15:10:44',380.200000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8513,6,6,'2019-08-21 15:10:44',380.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 (8514,6,6,'2019-08-21 15:10:44',381.882000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8515,6,6,'2019-08-21 15:10:44',382.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 (8516,6,6,'2019-08-21 15:10:44',383.580000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8517,6,6,'2019-08-21 15:10:44',384.086000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8518,6,6,'2019-08-21 15:10:44',384.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 (8519,6,6,'2019-08-21 15:10:44',384.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 (8520,6,6,'2019-08-21 15:10:44',385.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 (8521,6,6,'2019-08-21 15:10:44',385.690000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8522,6,6,'2019-08-21 15:10:44',386.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 (8523,6,6,'2019-08-21 15:10:44',387.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 (8524,6,6,'2019-08-21 15:10:44',388.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 (8525,6,6,'2019-08-21 15:10:44',388.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 (8526,6,6,'2019-08-21 15:10:44',389.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 (8527,6,6,'2019-08-21 15:10:44',389.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 (8528,6,6,'2019-08-21 15:10:44',390.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 (8529,6,6,'2019-08-21 15:10:44',391.604000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8530,6,6,'2019-08-21 15:10:44',392.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 (8531,6,6,'2019-08-21 15:10:44',393.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 (8532,6,6,'2019-08-21 15:10:44',394.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 (8533,6,6,'2019-08-21 15:10:44',394.715000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8534,6,6,'2019-08-21 15:10:44',395.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 (8535,6,6,'2019-08-21 15:10:44',395.664000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8536,6,6,'2019-08-21 15:10:44',396.149000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8537,6,6,'2019-08-21 15:10:44',397.115000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8538,6,6,'2019-08-21 15:10:44',397.521000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8539,6,6,'2019-08-21 15:10:44',397.947000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8540,6,6,'2019-08-21 15:10:44',398.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 (8541,6,6,'2019-08-21 15:10:44',399.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 (8542,6,6,'2019-08-21 15:10:44',400.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 (8543,6,6,'2019-08-21 15:10:44',401.064000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8544,6,6,'2019-08-21 15:10:44',401.561000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8545,6,6,'2019-08-21 15:10:44',402.359000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8546,6,6,'2019-08-21 15:10:44',403.192000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8547,6,6,'2019-08-21 15:10:44',403.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 (8548,6,6,'2019-08-21 15:10:44',404.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 (8549,6,6,'2019-08-21 15:10:44',404.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 (8550,6,6,'2019-08-21 15:10:44',405.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 (8551,6,6,'2019-08-21 15:10:44',405.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 (8552,6,6,'2019-08-21 15:10:44',406.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 (8553,6,6,'2019-08-21 15:10:44',407.653000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8554,6,6,'2019-08-21 15:10:44',408.553000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8555,6,6,'2019-08-21 15:10:44',408.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 (8556,6,6,'2019-08-21 15:10:44',409.535000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8557,6,6,'2019-08-21 15:10:44',410.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 (8558,6,6,'2019-08-21 15:10:44',410.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 (8559,6,6,'2019-08-21 15:10:44',411.483000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8560,6,6,'2019-08-21 15:10:44',412.365000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8561,6,6,'2019-08-21 15:10:44',412.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 (8562,6,6,'2019-08-21 15:10:44',413.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 (8563,6,6,'2019-08-21 15:10:44',413.733000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8564,6,6,'2019-08-21 15:10:44',414.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 (8565,6,6,'2019-08-21 15:10:44',415.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 (8566,6,6,'2019-08-21 15:10:44',415.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 (8567,6,6,'2019-08-21 15:10:44',416.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 (8568,6,6,'2019-08-21 15:10:44',417.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 (8569,6,6,'2019-08-21 15:10:44',418.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 (8570,6,6,'2019-08-21 15:10:44',418.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 (8571,6,6,'2019-08-21 15:10:44',419.441000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8572,6,6,'2019-08-21 15:10:44',420.207000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8573,6,6,'2019-08-21 15:10:44',421.022000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8574,6,6,'2019-08-21 15:10:44',421.805000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8575,6,6,'2019-08-21 15:10:44',422.122000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8576,6,6,'2019-08-21 15:10:44',422.737000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8577,6,6,'2019-08-21 15:10:44',423.569000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8578,6,6,'2019-08-21 15:10:44',424.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 (8579,6,6,'2019-08-21 15:10:44',425.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 (8580,6,6,'2019-08-21 15:10:44',425.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 (8581,6,6,'2019-08-21 15:10:44',425.900000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8582,6,6,'2019-08-21 15:10:44',426.767000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8583,6,6,'2019-08-21 15:10:44',427.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 (8584,6,6,'2019-08-21 15:10:44',427.731000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8585,6,6,'2019-08-21 15:10:44',428.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 (8586,6,6,'2019-08-21 15:10:44',429.087000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8587,6,6,'2019-08-21 15:10:44',429.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 (8588,6,6,'2019-08-21 15:10:44',430.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 (8589,6,6,'2019-08-21 15:10:44',431.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 (8590,6,6,'2019-08-21 15:10:44',431.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 (8591,6,6,'2019-08-21 15:10:44',432.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 (8592,6,6,'2019-08-21 15:10:44',433.109000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8593,6,6,'2019-08-21 15:10:44',434.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 (8594,6,6,'2019-08-21 15:10:44',435.091000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8595,6,6,'2019-08-21 15:10:44',435.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 (8596,6,6,'2019-08-21 15:10:44',435.989000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8597,6,6,'2019-08-21 15:10:44',436.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 (8598,6,6,'2019-08-21 15:10:44',437.787000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8599,6,6,'2019-08-21 15:10:44',438.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 (8600,6,6,'2019-08-21 15:10:44',438.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 (8601,6,6,'2019-08-21 15:10:44',439.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 (8602,6,6,'2019-08-21 15:10:44',440.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 (8603,6,6,'2019-08-21 15:10:44',440.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 (8604,6,6,'2019-08-21 15:10:44',441.384000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8605,6,6,'2019-08-21 15:10:44',442.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 (8606,6,6,'2019-08-21 15:10:44',442.653000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8607,6,6,'2019-08-21 15:10:44',443.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 (8608,6,6,'2019-08-21 15:10:44',443.931000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8609,6,6,'2019-08-21 15:10:44',444.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 (8610,6,6,'2019-08-21 15:10:44',445.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 (8611,6,6,'2019-08-21 15:10:44',446.645000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8612,6,6,'2019-08-21 15:10:44',446.894000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8613,6,6,'2019-08-21 15:10:44',447.493000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8614,6,6,'2019-08-21 15:10:44',447.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 (8615,6,6,'2019-08-21 15:10:44',448.310000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8616,6,6,'2019-08-21 15:10:44',449.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 (8617,6,6,'2019-08-21 15:10:44',449.925000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8618,6,6,'2019-08-21 15:10:44',450.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 (8619,6,6,'2019-08-21 15:10:44',451.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 (8620,6,6,'2019-08-21 15:10:44',451.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 (8621,6,6,'2019-08-21 15:10:44',452.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 (8622,6,6,'2019-08-21 15:10:44',452.829000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8623,6,6,'2019-08-21 15:10:44',453.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 (8624,6,6,'2019-08-21 15:10:44',454.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 (8625,6,6,'2019-08-21 15:10:44',454.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 (8626,6,6,'2019-08-21 15:10:44',455.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 (8627,6,6,'2019-08-21 15:10:44',455.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 (8628,6,6,'2019-08-21 15:10:44',455.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 (8629,6,6,'2019-08-21 15:10:44',456.800000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8630,6,6,'2019-08-21 15:10:44',457.683000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8631,6,6,'2019-08-21 15:10:44',458.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 (8632,6,6,'2019-08-21 15:10:44',459.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 (8633,6,6,'2019-08-21 15:10:44',460.330000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8634,6,6,'2019-08-21 15:10:44',460.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 (8635,6,6,'2019-08-21 15:10:44',461.328000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8636,6,6,'2019-08-21 15:10:44',462.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 (8637,6,6,'2019-08-21 15:10:44',462.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 (8638,6,6,'2019-08-21 15:10:44',462.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 (8639,6,6,'2019-08-21 15:10:44',463.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 (8640,6,6,'2019-08-21 15:10:44',464.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 (8641,6,6,'2019-08-21 15:10:44',465.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 (8642,6,6,'2019-08-21 15:10:44',466.606000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8643,6,6,'2019-08-21 15:10:44',467.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 (8644,6,6,'2019-08-21 15:10:44',467.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 (8645,6,6,'2019-08-21 15:10:44',468.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 (8646,6,6,'2019-08-21 15:10:44',469.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 (8647,6,6,'2019-08-21 15:10:44',469.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 (8648,6,6,'2019-08-21 15:10:44',470.086000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8649,6,6,'2019-08-21 15:10:44',470.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 (8650,6,6,'2019-08-21 15:10:44',470.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 (8651,6,6,'2019-08-21 15:10:44',471.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 (8652,6,6,'2019-08-21 15:10:44',472.566000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8653,6,6,'2019-08-21 15:10:44',473.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 (8654,6,6,'2019-08-21 15:10:44',473.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 (8655,6,6,'2019-08-21 15:10:44',474.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 (8656,6,6,'2019-08-21 15:10:44',475.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 (8657,6,6,'2019-08-21 15:10:44',476.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 (8658,6,6,'2019-08-21 15:10:44',476.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 (8659,6,6,'2019-08-21 15:10:44',476.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 (8660,6,6,'2019-08-21 15:10:44',477.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 (8661,6,6,'2019-08-21 15:10:44',477.860000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8662,6,6,'2019-08-21 15:10:44',478.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 (8663,6,6,'2019-08-21 15:10:44',479.575000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8664,6,6,'2019-08-21 15:10:44',480.374000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8665,6,6,'2019-08-21 15:10:44',481.273000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8666,6,6,'2019-08-21 15:10:44',481.598000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8667,6,6,'2019-08-21 15:10:44',482.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 (8668,6,6,'2019-08-21 15:10:44',483.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 (8669,6,6,'2019-08-21 15:10:44',483.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 (8670,6,6,'2019-08-21 15:10:44',484.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 (8671,6,6,'2019-08-21 15:10:44',484.920000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8672,6,6,'2019-08-21 15:10:44',485.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 (8673,6,6,'2019-08-21 15:10:44',486.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 (8674,6,6,'2019-08-21 15:10:44',486.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 (8675,6,6,'2019-08-21 15:10:44',487.566000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8676,6,6,'2019-08-21 15:10:44',488.565000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8677,6,6,'2019-08-21 15:10:44',489.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 (8678,6,6,'2019-08-21 15:10:44',489.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 (8679,6,6,'2019-08-21 15:10:44',490.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 (8680,6,6,'2019-08-21 15:10:44',491.279000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8681,6,6,'2019-08-21 15:10:44',491.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 (8682,6,6,'2019-08-21 15:10:44',492.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 (8683,6,6,'2019-08-21 15:10:44',492.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 (8684,6,6,'2019-08-21 15:10:44',492.994000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8685,6,6,'2019-08-21 15:10:44',493.977000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8686,6,6,'2019-08-21 15:10:44',494.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 (8687,6,6,'2019-08-21 15:10:44',495.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 (8688,6,6,'2019-08-21 15:10:44',496.640000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8689,6,6,'2019-08-21 15:10:44',497.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 (8690,6,6,'2019-08-21 15:10:44',498.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 (8691,6,6,'2019-08-21 15:10:44',498.728000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8692,6,6,'2019-08-21 15:10:44',499.154000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8693,6,6,'2019-08-21 15:10:44',499.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 (8694,6,6,'2019-08-21 15:10:44',499.937000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8695,6,6,'2019-08-21 15:10:44',500.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 (8696,6,6,'2019-08-21 15:10:44',501.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 (8697,6,6,'2019-08-21 15:10:44',502.517000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8698,6,6,'2019-08-21 15:10:44',502.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 (8699,6,6,'2019-08-21 15:10:44',503.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 (8700,6,6,'2019-08-21 15:10:44',503.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 (8701,6,6,'2019-08-21 15:10:44',504.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 (8702,6,6,'2019-08-21 15:10:44',505.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 (8703,6,6,'2019-08-21 15:10:44',506.013000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8704,6,6,'2019-08-21 15:10:44',506.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 (8705,6,6,'2019-08-21 15:10:44',507.694000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8706,6,6,'2019-08-21 15:10:44',508.644000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8707,6,6,'2019-08-21 15:10:44',509.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 (8708,6,6,'2019-08-21 15:10:44',510.392000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8709,6,6,'2019-08-21 15:10:44',510.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 (8710,6,6,'2019-08-21 15:10:44',511.190000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8711,6,6,'2019-08-21 15:10:44',511.639000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8712,6,6,'2019-08-21 15:10:44',512.106000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8713,6,6,'2019-08-21 15:10:44',513.072000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8714,6,6,'2019-08-21 15:10:44',513.971000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8715,6,6,'2019-08-21 15:10:44',514.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 (8716,6,6,'2019-08-21 15:10:44',515.669000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8717,6,6,'2019-08-21 15:10:44',516.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 (8718,6,6,'2019-08-21 15:10:44',516.452000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8719,6,6,'2019-08-21 15:10:44',517.060000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8720,6,6,'2019-08-21 15:10:44',517.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 (8721,6,6,'2019-08-21 15:10:44',517.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 (8722,6,6,'2019-08-21 15:10:44',518.316000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8723,6,6,'2019-08-21 15:10:44',519.148000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8724,6,6,'2019-08-21 15:10:44',519.981000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8725,6,6,'2019-08-21 15:10:44',520.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 (8726,6,6,'2019-08-21 15:10:44',521.513000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8727,6,6,'2019-08-21 15:10:44',521.945000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8728,6,6,'2019-08-21 15:10:44',522.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 (8729,6,6,'2019-08-21 15:10:44',523.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 (8730,6,6,'2019-08-21 15:10:44',523.712000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8731,6,6,'2019-08-21 15:10:44',524.110000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8732,6,6,'2019-08-21 15:10:44',524.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 (8733,6,6,'2019-08-21 15:10:44',525.025000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8734,6,6,'2019-08-21 15:10:44',525.941000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8735,6,6,'2019-08-21 15:10:44',526.757000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8736,6,6,'2019-08-21 15:10:44',527.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 (8737,6,6,'2019-08-21 15:10:44',528.538000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8738,6,6,'2019-08-21 15:10:44',528.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 (8739,6,6,'2019-08-21 15:10:44',529.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 (8740,6,6,'2019-08-21 15:10:44',529.930000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8741,6,6,'2019-08-21 15:10:44',530.304000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8742,6,6,'2019-08-21 15:10:44',531.252000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8743,6,6,'2019-08-21 15:10:44',532.252000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8744,6,6,'2019-08-21 15:10:44',533.134000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8745,6,6,'2019-08-21 15:10:44',534.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 (8746,6,6,'2019-08-21 15:10:44',534.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 (8747,6,6,'2019-08-21 15:10:44',535.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 (8748,6,6,'2019-08-21 15:10:44',535.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 (8749,6,6,'2019-08-21 15:10:44',536.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 (8750,6,6,'2019-08-21 15:10:44',537.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 (8751,6,6,'2019-08-21 15:10:44',537.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 (8752,6,6,'2019-08-21 15:10:44',538.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 (8753,6,6,'2019-08-21 15:10:44',539.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 (8754,6,6,'2019-08-21 15:10:44',540.093000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8755,6,6,'2019-08-21 15:10:44',540.388000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8756,6,6,'2019-08-21 15:10:44',540.875000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8757,6,6,'2019-08-21 15:10:44',541.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 (8758,6,6,'2019-08-21 15:10:44',542.022000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8759,6,6,'2019-08-21 15:10:44',542.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 (8760,6,6,'2019-08-21 15:10:44',543.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 (8761,6,6,'2019-08-21 15:10:44',544.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 (8762,6,6,'2019-08-21 15:10:44',545.370000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8763,6,6,'2019-08-21 15:10:44',546.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 (8764,6,6,'2019-08-21 15:10:44',547.218000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8765,6,6,'2019-08-21 15:10:44',547.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 (8766,6,6,'2019-08-21 15:10:44',548.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 (8767,6,6,'2019-08-21 15:10:44',548.463000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8768,6,6,'2019-08-21 15:10:44',548.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 (8769,6,6,'2019-08-21 15:10:44',549.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 (8770,6,6,'2019-08-21 15:10:44',550.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 (8771,6,6,'2019-08-21 15:10:44',551.249000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8772,6,6,'2019-08-21 15:10:44',551.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 (8773,6,6,'2019-08-21 15:10:44',552.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 (8774,6,6,'2019-08-21 15:10:44',553.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 (8775,6,6,'2019-08-21 15:10:44',553.712000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8776,6,6,'2019-08-21 15:10:44',554.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 (8777,6,6,'2019-08-21 15:10:44',555.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 (8778,6,6,'2019-08-21 15:10:44',555.519000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8779,6,6,'2019-08-21 15:10:44',556.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 (8780,6,6,'2019-08-21 15:10:44',557.041000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8781,6,6,'2019-08-21 15:10:44',557.265000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8782,6,6,'2019-08-21 15:10:44',557.956000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8783,6,6,'2019-08-21 15:10:44',558.955000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8784,6,6,'2019-08-21 15:10:44',559.888000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8785,6,6,'2019-08-21 15:10:44',560.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 (8786,6,6,'2019-08-21 15:10:44',561.686000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8787,6,6,'2019-08-21 15:10:44',562.585000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8788,6,6,'2019-08-21 15:10:44',562.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 (8789,6,6,'2019-08-21 15:10:44',563.567000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8790,6,6,'2019-08-21 15:10:44',563.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 (8791,6,6,'2019-08-21 15:10:44',564.482000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8792,6,6,'2019-08-21 15:10:44',565.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 (8793,6,6,'2019-08-21 15:10:44',566.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 (8794,6,6,'2019-08-21 15:10:44',566.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 (8795,6,6,'2019-08-21 15:10:44',566.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 (8796,6,6,'2019-08-21 15:10:44',567.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 (8797,6,6,'2019-08-21 15:10:44',568.157000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8798,6,6,'2019-08-21 15:10:44',568.828000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8799,6,6,'2019-08-21 15:10:44',569.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 (8800,6,6,'2019-08-21 15:10:44',570.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 (8801,6,6,'2019-08-21 15:10:44',571.325000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8802,6,6,'2019-08-21 15:10:44',572.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 (8803,6,6,'2019-08-21 15:10:44',573.023000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8804,6,6,'2019-08-21 15:10:44',573.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 (8805,6,6,'2019-08-21 15:10:44',573.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 (8806,6,6,'2019-08-21 15:10:44',574.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 (8807,6,6,'2019-08-21 15:10:44',574.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 (8808,6,6,'2019-08-21 15:10:44',575.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 (8809,6,6,'2019-08-21 15:10:44',576.142000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8810,6,6,'2019-08-21 15:10:44',576.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 (8811,6,6,'2019-08-21 15:10:44',577.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 (8812,6,6,'2019-08-21 15:10:44',578.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 (8813,6,6,'2019-08-21 15:10:44',578.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 (8814,6,6,'2019-08-21 15:10:44',579.150000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8815,6,6,'2019-08-21 15:10:44',580.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 (8816,6,6,'2019-08-21 15:10:44',597.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 (8817,6,6,'2019-08-21 15:10:44',617.542000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8818,6,6,'2019-08-21 15:10:44',618.100000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8819,6,6,'2019-08-21 15:10:44',618.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 (8820,6,6,'2019-08-21 15:10:44',619.373000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8821,6,6,'2019-08-21 15:10:44',620.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 (8822,6,6,'2019-08-21 15:10:44',620.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 (8823,6,6,'2019-08-21 15:10:44',621.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 (8824,6,6,'2019-08-21 15:10:44',622.087000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8825,6,6,'2019-08-21 15:10:44',623.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 (8826,6,6,'2019-08-21 15:10:44',624.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 (8827,6,6,'2019-08-21 15:10:44',624.834000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8828,6,6,'2019-08-21 15:10:44',625.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 (8829,6,6,'2019-08-21 15:10:44',625.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 (8830,6,6,'2019-08-21 15:10:44',626.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 (8831,6,6,'2019-08-21 15:10:44',627.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 (8832,6,6,'2019-08-21 15:10:44',627.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 (8833,6,6,'2019-08-21 15:10:44',628.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 (8834,6,6,'2019-08-21 15:10:44',629.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 (8835,6,6,'2019-08-21 15:10:44',629.995000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8836,6,6,'2019-08-21 15:10:44',630.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 (8837,6,6,'2019-08-21 15:10:44',631.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 (8838,6,6,'2019-08-21 15:10:44',631.710000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8839,6,6,'2019-08-21 15:10:44',632.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 (8840,6,6,'2019-08-21 15:10:44',632.979000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8841,6,6,'2019-08-21 15:10:44',633.391000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8842,6,6,'2019-08-21 15:10:44',634.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 (8843,6,6,'2019-08-21 15:10:44',634.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 (8844,6,6,'2019-08-21 15:10:44',635.389000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8845,6,6,'2019-08-21 15:10:44',635.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 (8846,6,6,'2019-08-21 15:10:44',636.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 (8847,6,6,'2019-08-21 15:10:44',637.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 (8848,6,6,'2019-08-21 15:10:44',638.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 (8849,6,6,'2019-08-21 15:10:44',639.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 (8850,6,6,'2019-08-21 15:10:44',639.369000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8851,6,6,'2019-08-21 15:10:44',639.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 (8852,6,6,'2019-08-21 15:10:44',640.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 (8853,6,6,'2019-08-21 15:10:44',641.516000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8854,6,6,'2019-08-21 15:10:44',642.432000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8855,6,6,'2019-08-21 15:10:44',642.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 (8856,6,6,'2019-08-21 15:10:44',643.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 (8857,6,6,'2019-08-21 15:10:44',644.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 (8858,6,6,'2019-08-21 15:10:44',644.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 (8859,6,6,'2019-08-21 15:10:44',645.161000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8860,6,6,'2019-08-21 15:10:44',646.044000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8861,6,6,'2019-08-21 15:10:44',646.876000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8862,6,6,'2019-08-21 15:10:44',647.775000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8863,6,6,'2019-08-21 15:10:44',648.558000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8864,6,6,'2019-08-21 15:10:44',648.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 (8865,6,6,'2019-08-21 15:10:44',649.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 (8866,6,6,'2019-08-21 15:10:44',650.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 (8867,6,6,'2019-08-21 15:10:44',651.139000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8868,6,6,'2019-08-21 15:10:44',651.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 (8869,6,6,'2019-08-21 15:10:44',652.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 (8870,6,6,'2019-08-21 15:10:44',652.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 (8871,6,6,'2019-08-21 15:10:44',653.351000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8872,6,6,'2019-08-21 15:10:44',653.569000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8873,6,6,'2019-08-21 15:10:44',654.435000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8874,6,6,'2019-08-21 15:10:44',654.814000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8875,6,6,'2019-08-21 15:10:44',655.217000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8876,6,6,'2019-08-21 15:10:44',656.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 (8877,6,6,'2019-08-21 15:10:44',656.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 (8878,6,6,'2019-08-21 15:10:44',657.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 (8879,6,6,'2019-08-21 15:10:44',658.048000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8880,6,6,'2019-08-21 15:10:44',658.880000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8881,6,6,'2019-08-21 15:10:44',659.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 (8882,6,6,'2019-08-21 15:10:44',660.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 (8883,6,6,'2019-08-21 15:10:44',660.645000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8884,6,6,'2019-08-21 15:10:44',660.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 (8885,6,6,'2019-08-21 15:10:44',661.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 (8886,6,6,'2019-08-21 15:10:44',662.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 (8887,6,6,'2019-08-21 15:10:44',663.158000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8888,6,6,'2019-08-21 15:10:44',663.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 (8889,6,6,'2019-08-21 15:10:44',664.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 (8890,6,6,'2019-08-21 15:10:44',665.272000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8891,6,6,'2019-08-21 15:10:44',665.855000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8892,6,6,'2019-08-21 15:10:44',666.871000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8893,6,6,'2019-08-21 15:10:44',667.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 (8894,6,6,'2019-08-21 15:10:44',668.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 (8895,6,6,'2019-08-21 15:10:44',668.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 (8896,6,6,'2019-08-21 15:10:44',669.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 (8897,6,6,'2019-08-21 15:10:44',670.101000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8898,6,6,'2019-08-21 15:10:44',671.066000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8899,6,6,'2019-08-21 15:10:44',671.865000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8900,6,6,'2019-08-21 15:10:44',672.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 (8901,6,6,'2019-08-21 15:10:44',672.715000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8902,6,6,'2019-08-21 15:10:44',673.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 (8903,6,6,'2019-08-21 15:10:44',674.463000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8904,6,6,'2019-08-21 15:10:44',674.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 (8905,6,6,'2019-08-21 15:10:44',675.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 (8906,6,6,'2019-08-21 15:10:44',676.228000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8907,6,6,'2019-08-21 15:10:44',677.160000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8908,6,6,'2019-08-21 15:10:44',677.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 (8909,6,6,'2019-08-21 15:10:44',678.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 (8910,6,6,'2019-08-21 15:10:44',678.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 (8911,6,6,'2019-08-21 15:10:44',679.395000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8912,6,6,'2019-08-21 15:10:44',679.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 (8913,6,6,'2019-08-21 15:10:44',680.806000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8914,6,6,'2019-08-21 15:10:44',681.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 (8915,6,6,'2019-08-21 15:10:44',681.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 (8916,6,6,'2019-08-21 15:10:44',682.787000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8917,6,6,'2019-08-21 15:10:44',683.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 (8918,6,6,'2019-08-21 15:10:44',683.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 (8919,6,6,'2019-08-21 15:10:44',684.419000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8920,6,6,'2019-08-21 15:10:44',685.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 (8921,6,6,'2019-08-21 15:10:44',686.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 (8922,6,6,'2019-08-21 15:10:44',686.612000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8923,6,6,'2019-08-21 15:10:44',687.149000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8924,6,6,'2019-08-21 15:10:44',688.064000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8925,6,6,'2019-08-21 15:10:44',688.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 (8926,6,6,'2019-08-21 15:10:44',688.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 (8927,6,6,'2019-08-21 15:10:44',689.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 (8928,6,6,'2019-08-21 15:10:44',690.495000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8929,6,6,'2019-08-21 15:10:44',691.461000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8930,6,6,'2019-08-21 15:10:44',692.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 (8931,6,6,'2019-08-21 15:10:44',692.871000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8932,6,6,'2019-08-21 15:10:44',693.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 (8933,6,6,'2019-08-21 15:10:44',693.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 (8934,6,6,'2019-08-21 15:10:44',694.241000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8935,6,6,'2019-08-21 15:10:44',695.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 (8936,6,6,'2019-08-21 15:10:44',696.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 (8937,6,6,'2019-08-21 15:10:44',697.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 (8938,6,6,'2019-08-21 15:10:44',697.505000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8939,6,6,'2019-08-21 15:10:44',697.971000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8940,6,6,'2019-08-21 15:10:44',698.836000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8941,6,6,'2019-08-21 15:10:44',699.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 (8942,6,6,'2019-08-21 15:10:44',700.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 (8943,6,6,'2019-08-21 15:10:44',700.685000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8944,6,6,'2019-08-21 15:10:44',701.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 (8945,6,6,'2019-08-21 15:10:44',702.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 (8946,6,6,'2019-08-21 15:10:44',703.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 (8947,6,6,'2019-08-21 15:10:44',703.531000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8948,6,6,'2019-08-21 15:10:44',703.947000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8949,6,6,'2019-08-21 15:10:44',704.480000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8950,6,6,'2019-08-21 15:10:44',704.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 (8951,6,6,'2019-08-21 15:10:44',705.695000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8952,6,6,'2019-08-21 15:10:44',706.628000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8953,6,6,'2019-08-21 15:10:44',707.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 (8954,6,6,'2019-08-21 15:10:44',707.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 (8955,6,6,'2019-08-21 15:10:44',708.426000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8956,6,6,'2019-08-21 15:10:44',709.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 (8957,6,6,'2019-08-21 15:10:44',710.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 (8958,6,6,'2019-08-21 15:10:44',710.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 (8959,6,6,'2019-08-21 15:10:44',711.254000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8960,6,6,'2019-08-21 15:10:44',711.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 (8961,6,6,'2019-08-21 15:10:44',712.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 (8962,6,6,'2019-08-21 15:10:44',713.337000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8963,6,6,'2019-08-21 15:10:44',713.697000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8964,6,6,'2019-08-21 15:10:44',714.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 (8965,6,6,'2019-08-21 15:10:44',715.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 (8966,6,6,'2019-08-21 15:10:44',715.383000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8967,6,6,'2019-08-21 15:10:44',715.901000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8968,6,6,'2019-08-21 15:10:44',716.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 (8969,6,6,'2019-08-21 15:10:44',717.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 (8970,6,6,'2019-08-21 15:10:44',718.731000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8971,6,6,'2019-08-21 15:10:44',719.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 (8972,6,6,'2019-08-21 15:10:44',719.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 (8973,6,6,'2019-08-21 15:10:44',719.976000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8974,6,6,'2019-08-21 15:10:44',720.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 (8975,6,6,'2019-08-21 15:10:44',721.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 (8976,6,6,'2019-08-21 15:10:44',722.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 (8977,6,6,'2019-08-21 15:10:44',722.977000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8978,6,6,'2019-08-21 15:10:44',723.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 (8979,6,6,'2019-08-21 15:10:44',724.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 (8980,6,6,'2019-08-21 15:10:44',725.013000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8981,6,6,'2019-08-21 15:10:44',725.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 (8982,6,6,'2019-08-21 15:10:44',726.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 (8983,6,6,'2019-08-21 15:10:44',726.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 (8984,6,6,'2019-08-21 15:10:44',727.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 (8985,6,6,'2019-08-21 15:10:44',728.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 (8986,6,6,'2019-08-21 15:10:44',729.336000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8987,6,6,'2019-08-21 15:10:44',730.302000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8988,6,6,'2019-08-21 15:10:44',730.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 (8989,6,6,'2019-08-21 15:10:44',731.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 (8990,6,6,'2019-08-21 15:10:44',732.066000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8991,6,6,'2019-08-21 15:10:44',732.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 (8992,6,6,'2019-08-21 15:10:44',733.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 (8993,6,6,'2019-08-21 15:10:44',733.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 (8994,6,6,'2019-08-21 15:10:44',734.598000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8995,6,6,'2019-08-21 15:10:44',734.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 (8996,6,6,'2019-08-21 15:10:44',735.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 (8997,6,6,'2019-08-21 15:10:44',736.212000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8998,6,6,'2019-08-21 15:10:44',737.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 (8999,6,6,'2019-08-21 15:10:44',737.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 (9000,6,6,'2019-08-21 15:10:44',738.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 (9001,6,6,'2019-08-21 15:10:44',738.893000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9002,6,6,'2019-08-21 15:10:44',739.675000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9003,6,6,'2019-08-21 15:10:44',740.014000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9004,6,6,'2019-08-21 15:10:44',740.558000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9005,6,6,'2019-08-21 15:10:44',741.557000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9006,6,6,'2019-08-21 15:10:44',741.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 (9007,6,6,'2019-08-21 15:10:44',742.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 (9008,6,6,'2019-08-21 15:10:44',742.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 (9009,6,6,'2019-08-21 15:10:44',743.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 (9010,6,6,'2019-08-21 15:10:44',744.270000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9011,6,6,'2019-08-21 15:10:44',744.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 (9012,6,6,'2019-08-21 15:10:44',745.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 (9013,6,6,'2019-08-21 15:10:44',745.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 (9014,6,6,'2019-08-21 15:10:44',746.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 (9015,6,6,'2019-08-21 15:10:44',747.800000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9016,6,6,'2019-08-21 15:10:44',748.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 (9017,6,6,'2019-08-21 15:10:44',748.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 (9018,6,6,'2019-08-21 15:10:44',749.515000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9019,6,6,'2019-08-21 15:10:44',750.297000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9020,6,6,'2019-08-21 15:10:44',750.653000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9021,6,6,'2019-08-21 15:10:44',751.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 (9022,6,6,'2019-08-21 15:10:44',751.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 (9023,6,6,'2019-08-21 15:10:44',752.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 (9024,6,6,'2019-08-21 15:10:44',753.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 (9025,6,6,'2019-08-21 15:10:44',753.793000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9026,6,6,'2019-08-21 15:10:44',754.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 (9027,6,6,'2019-08-21 15:10:44',755.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 (9028,6,6,'2019-08-21 15:10:44',755.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 (9029,6,6,'2019-08-21 15:10:44',756.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 (9030,6,6,'2019-08-21 15:10:44',757.572000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9031,6,6,'2019-08-21 15:10:44',758.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 (9032,6,6,'2019-08-21 15:10:44',759.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 (9033,6,6,'2019-08-21 15:10:44',759.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 (9034,6,6,'2019-08-21 15:10:44',760.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 (9035,6,6,'2019-08-21 15:10:44',760.985000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9036,6,6,'2019-08-21 15:10:44',762.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 (9037,6,6,'2019-08-21 15:10:44',762.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 (9038,6,6,'2019-08-21 15:10:44',762.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 (9039,6,6,'2019-08-21 15:10:44',763.413000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9040,6,6,'2019-08-21 15:10:44',763.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 (9041,6,6,'2019-08-21 15:10:44',764.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 (9042,6,6,'2019-08-21 15:10:44',765.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 (9043,6,6,'2019-08-21 15:10:44',766.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 (9044,6,6,'2019-08-21 15:10:44',766.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 (9045,6,6,'2019-08-21 15:10:44',767.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 (9046,6,6,'2019-08-21 15:10:44',768.360000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9047,6,6,'2019-08-21 15:10:44',768.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 (9048,6,6,'2019-08-21 15:10:44',769.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 (9049,6,6,'2019-08-21 15:10:44',770.125000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9050,6,6,'2019-08-21 15:10:44',770.975000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9051,6,6,'2019-08-21 15:10:44',771.939000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9052,6,6,'2019-08-21 15:10:44',772.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 (9053,6,6,'2019-08-21 15:10:44',773.315000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9054,6,6,'2019-08-21 15:10:44',773.888000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9055,6,6,'2019-08-21 15:10:44',774.315000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9056,6,6,'2019-08-21 15:10:44',774.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 (9057,6,6,'2019-08-21 15:10:44',775.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 (9058,6,6,'2019-08-21 15:10:44',776.451000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9059,6,6,'2019-08-21 15:10:44',777.450000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9060,6,6,'2019-08-21 15:10:44',778.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 (9061,6,6,'2019-08-21 15:10:44',778.857000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9062,6,6,'2019-08-21 15:10:44',779.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 (9063,6,6,'2019-08-21 15:10:44',780.280000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9064,6,6,'2019-08-21 15:10:44',781.047000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9065,6,6,'2019-08-21 15:10:44',781.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 (9066,6,6,'2019-08-21 15:10:44',781.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 (9067,6,6,'2019-08-21 15:10:44',782.944000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9068,6,6,'2019-08-21 15:10:44',783.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 (9069,6,6,'2019-08-21 15:10:44',783.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 (9070,6,6,'2019-08-21 15:10:44',784.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 (9071,6,6,'2019-08-21 15:10:44',784.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 (9072,6,6,'2019-08-21 15:10:44',785.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 (9073,6,6,'2019-08-21 15:10:44',786.474000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9074,6,6,'2019-08-21 15:10:44',787.290000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9075,6,6,'2019-08-21 15:10:44',787.620000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9076,6,6,'2019-08-21 15:10:44',788.172000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9077,6,6,'2019-08-21 15:10:44',789.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 (9078,6,6,'2019-08-21 15:10:44',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 (9079,6,6,'2019-08-21 15:10:44',791.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 (9080,6,6,'2019-08-21 15:10:44',792.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 (9081,6,6,'2019-08-21 15:10:44',792.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 (9082,6,6,'2019-08-21 15:10:44',793.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 (9083,6,6,'2019-08-21 15:10:44',794.049000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9084,6,6,'2019-08-21 15:10:44',794.394000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9085,6,6,'2019-08-21 15:10:44',795.048000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9086,6,6,'2019-08-21 15:10:44',795.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 (9087,6,6,'2019-08-21 15:10:44',796.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 (9088,6,6,'2019-08-21 15:10:44',797.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 (9089,6,6,'2019-08-21 15:10:44',797.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 (9090,6,6,'2019-08-21 15:10:44',798.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 (9091,6,6,'2019-08-21 15:10:44',798.906000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9092,6,6,'2019-08-21 15:10:44',799.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 (9093,6,6,'2019-08-21 15:10:44',799.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 (9094,6,6,'2019-08-21 15:10:44',800.459000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9095,6,6,'2019-08-21 15:10:44',801.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 (9096,6,6,'2019-08-21 15:10:44',802.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 (9097,6,6,'2019-08-21 15:10:44',803.223000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9098,6,6,'2019-08-21 15:10:44',804.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 (9099,6,6,'2019-08-21 15:10:44',804.987000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9100,6,6,'2019-08-21 15:10:44',805.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 (9101,6,6,'2019-08-21 15:10:44',806.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 (9102,6,6,'2019-08-21 15:10:44',806.669000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9103,6,6,'2019-08-21 15:10:44',807.567000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9104,6,6,'2019-08-21 15:10:44',807.900000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9105,6,6,'2019-08-21 15:10:44',808.450000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9106,6,6,'2019-08-21 15:10:44',809.382000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9107,6,6,'2019-08-21 15:10:44',810.165000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9108,6,6,'2019-08-21 15:10:44',810.947000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9109,6,6,'2019-08-21 15:10:44',811.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 (9110,6,6,'2019-08-21 15:10:44',811.779000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9111,6,6,'2019-08-21 15:10:44',812.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 (9112,6,6,'2019-08-21 15:10:44',813.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 (9113,6,6,'2019-08-21 15:10:44',813.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 (9114,6,6,'2019-08-21 15:10:44',814.377000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9115,6,6,'2019-08-21 15:10:44',815.242000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9116,6,6,'2019-08-21 15:10:44',816.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 (9117,6,6,'2019-08-21 15:10:44',817.074000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9118,6,6,'2019-08-21 15:10:44',817.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 (9119,6,6,'2019-08-21 15:10:44',818.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 (9120,6,6,'2019-08-21 15:10:44',818.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 (9121,6,6,'2019-08-21 15:10:44',819.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 (9122,6,6,'2019-08-21 15:10:44',819.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 (9123,6,6,'2019-08-21 15:10:44',820.146000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9124,6,6,'2019-08-21 15:10:44',820.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 (9125,6,6,'2019-08-21 15:10:44',821.469000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9126,6,6,'2019-08-21 15:10:44',822.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 (9127,6,6,'2019-08-21 15:10:44',823.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 (9128,6,6,'2019-08-21 15:10:44',824.282000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9129,6,6,'2019-08-21 15:10:44',824.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 (9130,6,6,'2019-08-21 15:10:44',825.082000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9131,6,6,'2019-08-21 15:10:44',825.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 (9132,6,6,'2019-08-21 15:10:44',826.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 (9133,6,6,'2019-08-21 15:10:44',827.252000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9134,6,6,'2019-08-21 15:10:44',827.862000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9135,6,6,'2019-08-21 15:10:44',828.744000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9136,6,6,'2019-08-21 15:10:44',829.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 (9137,6,6,'2019-08-21 15:10:44',830.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 (9138,6,6,'2019-08-21 15:10:44',830.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 (9139,6,6,'2019-08-21 15:10:44',831.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 (9140,6,6,'2019-08-21 15:10:44',832.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 (9141,6,6,'2019-08-21 15:10:44',833.223000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9142,6,6,'2019-08-21 15:10:44',833.743000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9143,6,6,'2019-08-21 15:10:44',834.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 (9144,6,6,'2019-08-21 15:10:44',835.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 (9145,6,6,'2019-08-21 15:10:44',835.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 (9146,6,6,'2019-08-21 15:10:44',836.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 (9147,6,6,'2019-08-21 15:10:44',837.035000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9148,6,6,'2019-08-21 15:10:44',837.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 (9149,6,6,'2019-08-21 15:10:44',837.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 (9150,6,6,'2019-08-21 15:10:44',838.700000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9151,6,6,'2019-08-21 15:10:44',839.699000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9152,6,6,'2019-08-21 15:10:44',840.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 (9153,6,6,'2019-08-21 15:10:44',840.921000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9154,6,6,'2019-08-21 15:10:44',841.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 (9155,6,6,'2019-08-21 15:10:44',842.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 (9156,6,6,'2019-08-21 15:10:44',842.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 (9157,6,6,'2019-08-21 15:10:44',843.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 (9158,6,6,'2019-08-21 15:10:44',844.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 (9159,6,6,'2019-08-21 15:10:44',844.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 (9160,6,6,'2019-08-21 15:10:44',845.093000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9161,6,6,'2019-08-21 15:10:44',846.042000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9162,6,6,'2019-08-21 15:10:44',846.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 (9163,6,6,'2019-08-21 15:10:44',847.690000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9164,6,6,'2019-08-21 15:10:44',848.689000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9165,6,6,'2019-08-21 15:10:44',849.655000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9166,6,6,'2019-08-21 15:10:44',850.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 (9167,6,6,'2019-08-21 15:10:44',850.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 (9168,6,6,'2019-08-21 15:10:44',851.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 (9169,6,6,'2019-08-21 15:10:44',851.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 (9170,6,6,'2019-08-21 15:10:44',852.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 (9171,6,6,'2019-08-21 15:10:44',853.001000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9172,6,6,'2019-08-21 15:10:44',853.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 (9173,6,6,'2019-08-21 15:10:44',853.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 (9174,6,6,'2019-08-21 15:10:44',854.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 (9175,6,6,'2019-08-21 15:10:44',854.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 (9176,6,6,'2019-08-21 15:10:44',855.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 (9177,6,6,'2019-08-21 15:10:44',856.564000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9178,6,6,'2019-08-21 15:10:44',857.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 (9179,6,6,'2019-08-21 15:10:44',857.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 (9180,6,6,'2019-08-21 15:10:44',858.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 (9181,6,6,'2019-08-21 15:10:44',858.769000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9182,6,6,'2019-08-21 15:10:44',859.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 (9183,6,6,'2019-08-21 15:10:44',860.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 (9184,6,6,'2019-08-21 15:10:44',860.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 (9185,6,6,'2019-08-21 15:10:44',861.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 (9186,6,6,'2019-08-21 15:10:44',862.657000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9187,6,6,'2019-08-21 15:10:44',863.640000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9188,6,6,'2019-08-21 15:10:44',863.978000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9189,6,6,'2019-08-21 15:10:44',864.556000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9190,6,6,'2019-08-21 15:10:44',864.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 (9191,6,6,'2019-08-21 15:10:44',865.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 (9192,6,6,'2019-08-21 15:10:44',866.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 (9193,6,6,'2019-08-21 15:10:44',867.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 (9194,6,6,'2019-08-21 15:10:44',868.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 (9195,6,6,'2019-08-21 15:10:44',869.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 (9196,6,6,'2019-08-21 15:10:44',869.850000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9197,6,6,'2019-08-21 15:10:44',870.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 (9198,6,6,'2019-08-21 15:10:44',870.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 (9199,6,6,'2019-08-21 15:10:44',871.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 (9200,6,6,'2019-08-21 15:10:44',872.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 (9201,6,6,'2019-08-21 15:10:44',872.580000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9202,6,6,'2019-08-21 15:10:44',873.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 (9203,6,6,'2019-08-21 15:10:44',874.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 (9204,6,6,'2019-08-21 15:10:44',874.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 (9205,6,6,'2019-08-21 15:10:44',875.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 (9206,6,6,'2019-08-21 15:10:44',875.876000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9207,6,6,'2019-08-21 15:10:44',876.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 (9208,6,6,'2019-08-21 15:10:44',877.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 (9209,6,6,'2019-08-21 15:10:44',877.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 (9210,6,6,'2019-08-21 15:10:44',878.540000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9211,6,6,'2019-08-21 15:10:44',879.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 (9212,6,6,'2019-08-21 15:10:44',880.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 (9213,6,6,'2019-08-21 15:10:44',881.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 (9214,6,6,'2019-08-21 15:10:44',881.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 (9215,6,6,'2019-08-21 15:10:44',881.820000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9216,6,6,'2019-08-21 15:10:44',882.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 (9217,6,6,'2019-08-21 15:10:44',882.785000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9218,6,6,'2019-08-21 15:10:44',900.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 (9219,6,6,'2019-08-21 15:10:44',921.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 (9220,6,6,'2019-08-21 15:10:44',921.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 (9221,6,6,'2019-08-21 15:10:44',922.093000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9222,6,6,'2019-08-21 15:10:44',922.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 (9223,6,6,'2019-08-21 15:10:44',923.674000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9224,6,6,'2019-08-21 15:10:44',924.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 (9225,6,6,'2019-08-21 15:10:44',924.640000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9226,6,6,'2019-08-21 15:10:44',925.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 (9227,6,6,'2019-08-21 15:10:44',926.471000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9228,6,6,'2019-08-21 15:10:44',926.926000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9229,6,6,'2019-08-21 15:10:44',927.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 (9230,6,6,'2019-08-21 15:10:44',928.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 (9231,6,6,'2019-08-21 15:10:44',928.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 (9232,6,6,'2019-08-21 15:10:44',928.985000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9233,6,6,'2019-08-21 15:10:44',929.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 (9234,6,6,'2019-08-21 15:10:44',930.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 (9235,6,6,'2019-08-21 15:10:44',931.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 (9236,6,6,'2019-08-21 15:10:44',932.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 (9237,6,6,'2019-08-21 15:10:44',932.761000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9238,6,6,'2019-08-21 15:10:44',933.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 (9239,6,6,'2019-08-21 15:10:44',933.649000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9240,6,6,'2019-08-21 15:10:44',934.096000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9241,6,6,'2019-08-21 15:10:44',934.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 (9242,6,6,'2019-08-21 15:10:44',935.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 (9243,6,6,'2019-08-21 15:10:44',936.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 (9244,6,6,'2019-08-21 15:10:44',937.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 (9245,6,6,'2019-08-21 15:10:44',938.725000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9246,6,6,'2019-08-21 15:10:44',939.121000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9247,6,6,'2019-08-21 15:10:44',939.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 (9248,6,6,'2019-08-21 15:10:44',939.989000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9249,6,6,'2019-08-21 15:10:44',940.572000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9250,6,6,'2019-08-21 15:10:44',941.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 (9251,6,6,'2019-08-21 15:10:44',942.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 (9252,6,6,'2019-08-21 15:10:44',943.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 (9253,6,6,'2019-08-21 15:10:44',943.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 (9254,6,6,'2019-08-21 15:10:44',944.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 (9255,6,6,'2019-08-21 15:10:44',944.935000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9256,6,6,'2019-08-21 15:10:44',945.783000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9257,6,6,'2019-08-21 15:10:44',946.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 (9258,6,6,'2019-08-21 15:10:44',946.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 (9259,6,6,'2019-08-21 15:10:44',947.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 (9260,6,6,'2019-08-21 15:10:44',948.186000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9261,6,6,'2019-08-21 15:10:44',948.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 (9262,6,6,'2019-08-21 15:10:44',949.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 (9263,6,6,'2019-08-21 15:10:44',950.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 (9264,6,6,'2019-08-21 15:10:44',951.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 (9265,6,6,'2019-08-21 15:10:44',951.841000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9266,6,6,'2019-08-21 15:10:44',952.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 (9267,6,6,'2019-08-21 15:10:44',953.325000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9268,6,6,'2019-08-21 15:10:44',953.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 (9269,6,6,'2019-08-21 15:10:44',954.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 (9270,6,6,'2019-08-21 15:10:44',955.007000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9271,6,6,'2019-08-21 15:10:44',955.806000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9272,6,6,'2019-08-21 15:10:44',956.222000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9273,6,6,'2019-08-21 15:10:44',956.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 (9274,6,6,'2019-08-21 15:10:44',957.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 (9275,6,6,'2019-08-21 15:10:44',958.386000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9276,6,6,'2019-08-21 15:10:44',959.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 (9277,6,6,'2019-08-21 15:10:44',959.583000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9278,6,6,'2019-08-21 15:10:44',960.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 (9279,6,6,'2019-08-21 15:10:44',961.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 (9280,6,6,'2019-08-21 15:10:44',961.799000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9281,6,6,'2019-08-21 15:10:44',962.798000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9282,6,6,'2019-08-21 15:10:44',963.086000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9283,6,6,'2019-08-21 15:10:44',963.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 (9284,6,6,'2019-08-21 15:10:44',964.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 (9285,6,6,'2019-08-21 15:10:44',964.479000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9286,6,6,'2019-08-21 15:10:44',965.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 (9287,6,6,'2019-08-21 15:10:44',965.640000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9288,6,6,'2019-08-21 15:10:44',966.228000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9289,6,6,'2019-08-21 15:10:44',967.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 (9290,6,6,'2019-08-21 15:10:44',968.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 (9291,6,6,'2019-08-21 15:10:44',968.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 (9292,6,6,'2019-08-21 15:10:44',969.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 (9293,6,6,'2019-08-21 15:10:44',970.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 (9294,6,6,'2019-08-21 15:10:44',970.522000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9295,6,6,'2019-08-21 15:10:44',971.422000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9296,6,6,'2019-08-21 15:10:44',972.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 (9297,6,6,'2019-08-21 15:10:44',972.747000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9298,6,6,'2019-08-21 15:10:44',973.236000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9299,6,6,'2019-08-21 15:10:44',974.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 (9300,6,6,'2019-08-21 15:10:44',975.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 (9301,6,6,'2019-08-21 15:10:44',975.382000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9302,6,6,'2019-08-21 15:10:44',976.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 (9303,6,6,'2019-08-21 15:10:44',976.916000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9304,6,6,'2019-08-21 15:10:44',977.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 (9305,6,6,'2019-08-21 15:10:44',978.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 (9306,6,6,'2019-08-21 15:10:44',978.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 (9307,6,6,'2019-08-21 15:10:44',979.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 (9308,6,6,'2019-08-21 15:10:44',980.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 (9309,6,6,'2019-08-21 15:10:44',981.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 (9310,6,6,'2019-08-21 15:10:44',982.160000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9311,6,6,'2019-08-21 15:10:44',982.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 (9312,6,6,'2019-08-21 15:10:44',983.043000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9313,6,6,'2019-08-21 15:10:44',983.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 (9314,6,6,'2019-08-21 15:10:44',983.925000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9315,6,6,'2019-08-21 15:10:44',984.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 (9316,6,6,'2019-08-21 15:10:44',985.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 (9317,6,6,'2019-08-21 15:10:44',985.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 (9318,6,6,'2019-08-21 15:10:44',986.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 (9319,6,6,'2019-08-21 15:10:44',987.438000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9320,6,6,'2019-08-21 15:10:44',987.808000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9321,6,6,'2019-08-21 15:10:44',988.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 (9322,6,6,'2019-08-21 15:10:44',989.336000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9323,6,6,'2019-08-21 15:10:44',990.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 (9324,6,6,'2019-08-21 15:10:44',991.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 (9325,6,6,'2019-08-21 15:10:44',992.315000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9326,6,6,'2019-08-21 15:10:44',992.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 (9327,6,6,'2019-08-21 15:10:44',993.198000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9328,6,6,'2019-08-21 15:10:44',993.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 (9329,6,6,'2019-08-21 15:10:44',994.147000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9330,6,6,'2019-08-21 15:10:44',995.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 (9331,6,6,'2019-08-21 15:10:44',995.879000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9332,6,6,'2019-08-21 15:10:44',996.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 (9333,6,6,'2019-08-21 15:10:44',997.186000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9334,6,6,'2019-08-21 15:10:44',997.543000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9335,6,6,'2019-08-21 15:10:44',998.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 (9336,6,6,'2019-08-21 15:10:44',999.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 (9337,6,6,'2019-08-21 15:10:44',999.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 (9338,6,6,'2019-08-21 15:10:44',1000.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 (9339,6,6,'2019-08-21 15:10:44',1000.973000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9340,6,6,'2019-08-21 15:10:44',1001.365000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9341,6,6,'2019-08-21 15:10:44',1001.872000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9342,6,6,'2019-08-21 15:10:44',1002.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 (9343,6,6,'2019-08-21 15:10:44',1003.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 (9344,6,6,'2019-08-21 15:10:44',1003.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 (9345,6,6,'2019-08-21 15:10:44',1004.652000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9346,6,6,'2019-08-21 15:10:44',1005.468000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9347,6,6,'2019-08-21 15:10:44',1006.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 (9348,6,6,'2019-08-21 15:10:44',1007.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 (9349,6,6,'2019-08-21 15:10:44',1007.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 (9350,6,6,'2019-08-21 15:10:44',1008.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 (9351,6,6,'2019-08-21 15:10:44',1008.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 (9352,6,6,'2019-08-21 15:10:44',1009.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 (9353,6,6,'2019-08-21 15:10:44',1010.029000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9354,6,6,'2019-08-21 15:10:44',1011.012000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9355,6,6,'2019-08-21 15:10:44',1011.895000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9356,6,6,'2019-08-21 15:10:44',1012.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 (9357,6,6,'2019-08-21 15:10:44',1012.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 (9358,6,6,'2019-08-21 15:10:44',1013.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 (9359,6,6,'2019-08-21 15:10:44',1014.608000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9360,6,6,'2019-08-21 15:10:44',1015.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 (9361,6,6,'2019-08-21 15:10:44',1015.729000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9362,6,6,'2019-08-21 15:10:44',1016.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 (9363,6,6,'2019-08-21 15:10:44',1017.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 (9364,6,6,'2019-08-21 15:10:44',1017.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 (9365,6,6,'2019-08-21 15:10:44',1018.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 (9366,6,6,'2019-08-21 15:10:44',1018.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 (9367,6,6,'2019-08-21 15:10:44',1019.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 (9368,6,6,'2019-08-21 15:10:44',1020.418000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9369,6,6,'2019-08-21 15:10:44',1021.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 (9370,6,6,'2019-08-21 15:10:44',1021.484000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9371,6,6,'2019-08-21 15:10:44',1022.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 (9372,6,6,'2019-08-21 15:10:44',1022.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 (9373,6,6,'2019-08-21 15:10:44',1022.999000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9374,6,6,'2019-08-21 15:10:44',1023.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 (9375,6,6,'2019-08-21 15:10:44',1024.580000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9376,6,6,'2019-08-21 15:10:44',1025.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 (9377,6,6,'2019-08-21 15:10:44',1026.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 (9378,6,6,'2019-08-21 15:10:44',1026.703000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9379,6,6,'2019-08-21 15:10:44',1027.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 (9380,6,6,'2019-08-21 15:10:44',1028.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 (9381,6,6,'2019-08-21 15:10:44',1029.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 (9382,6,6,'2019-08-21 15:10:44',1030.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 (9383,6,6,'2019-08-21 15:10:44',1030.388000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9384,6,6,'2019-08-21 15:10:44',1030.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 (9385,6,6,'2019-08-21 15:10:44',1031.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 (9386,6,6,'2019-08-21 15:10:44',1032.205000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9387,6,6,'2019-08-21 15:10:44',1032.705000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9388,6,6,'2019-08-21 15:10:44',1033.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 (9389,6,6,'2019-08-21 15:10:44',1034.553000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9390,6,6,'2019-08-21 15:10:44',1034.940000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9391,6,6,'2019-08-21 15:10:44',1035.452000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9392,6,6,'2019-08-21 15:10:44',1035.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 (9393,6,6,'2019-08-21 15:10:44',1036.234000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9394,6,6,'2019-08-21 15:10:44',1037.250000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9395,6,6,'2019-08-21 15:10:44',1038.232000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9396,6,6,'2019-08-21 15:10:44',1038.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 (9397,6,6,'2019-08-21 15:10:44',1039.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 (9398,6,6,'2019-08-21 15:10:44',1040.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 (9399,6,6,'2019-08-21 15:10:44',1041.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 (9400,6,6,'2019-08-21 15:10:44',1041.861000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9401,6,6,'2019-08-21 15:10:44',1042.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 (9402,6,6,'2019-08-21 15:10:44',1042.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 (9403,6,6,'2019-08-21 15:10:44',1043.560000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9404,6,6,'2019-08-21 15:10:44',1043.874000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9405,6,6,'2019-08-21 15:10:44',1044.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 (9406,6,6,'2019-08-21 15:10:44',1045.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 (9407,6,6,'2019-08-21 15:10:44',1046.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 (9408,6,6,'2019-08-21 15:10:44',1047.106000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9409,6,6,'2019-08-21 15:10:44',1047.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 (9410,6,6,'2019-08-21 15:10:44',1048.194000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9411,6,6,'2019-08-21 15:10:44',1048.820000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9412,6,6,'2019-08-21 15:10:44',1049.234000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9413,6,6,'2019-08-21 15:10:44',1049.670000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9414,6,6,'2019-08-21 15:10:44',1050.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 (9415,6,6,'2019-08-21 15:10:44',1050.900000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9416,6,6,'2019-08-21 15:10:44',1051.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 (9417,6,6,'2019-08-21 15:10:44',1052.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 (9418,6,6,'2019-08-21 15:10:44',1053.249000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9419,6,6,'2019-08-21 15:10:44',1054.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 (9420,6,6,'2019-08-21 15:10:44',1055.030000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9421,6,6,'2019-08-21 15:10:44',1055.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 (9422,6,6,'2019-08-21 15:10:44',1056.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 (9423,6,6,'2019-08-21 15:10:44',1057.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 (9424,6,6,'2019-08-21 15:10:44',1057.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 (9425,6,6,'2019-08-21 15:10:44',1058.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 (9426,6,6,'2019-08-21 15:10:44',1058.754000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9427,6,6,'2019-08-21 15:10:44',1059.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 (9428,6,6,'2019-08-21 15:10:44',1060.241000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9429,6,6,'2019-08-21 15:10:44',1060.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 (9430,6,6,'2019-08-21 15:10:44',1061.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 (9431,6,6,'2019-08-21 15:10:44',1061.823000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9432,6,6,'2019-08-21 15:10:44',1062.639000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9433,6,6,'2019-08-21 15:10:44',1063.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 (9434,6,6,'2019-08-21 15:10:44',1063.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 (9435,6,6,'2019-08-21 15:10:44',1064.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 (9436,6,6,'2019-08-21 15:10:44',1064.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 (9437,6,6,'2019-08-21 15:10:44',1065.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 (9438,6,6,'2019-08-21 15:10:44',1065.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 (9439,6,6,'2019-08-21 15:10:44',1066.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 (9440,6,6,'2019-08-21 15:10:44',1066.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 (9441,6,6,'2019-08-21 15:10:44',1067.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 (9442,6,6,'2019-08-21 15:10:44',1068.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 (9443,6,6,'2019-08-21 15:10:44',1069.481000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9444,6,6,'2019-08-21 15:10:44',1070.364000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9445,6,6,'2019-08-21 15:10:44',1070.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 (9446,6,6,'2019-08-21 15:10:44',1071.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 (9447,6,6,'2019-08-21 15:10:44',1072.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 (9448,6,6,'2019-08-21 15:10:44',1072.895000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9449,6,6,'2019-08-21 15:10:44',1073.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 (9450,6,6,'2019-08-21 15:10:44',1073.760000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9451,6,6,'2019-08-21 15:10:44',1074.659000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9452,6,6,'2019-08-21 15:10:44',1075.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 (9453,6,6,'2019-08-21 15:10:44',1076.440000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9454,6,6,'2019-08-21 15:10:44',1077.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 (9455,6,6,'2019-08-21 15:10:44',1078.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 (9456,6,6,'2019-08-21 15:10:44',1078.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 (9457,6,6,'2019-08-21 15:10:44',1079.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 (9458,6,6,'2019-08-21 15:10:44',1079.499000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9459,6,6,'2019-08-21 15:10:44',1079.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 (9460,6,6,'2019-08-21 15:10:44',1080.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 (9461,6,6,'2019-08-21 15:10:44',1081.295000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9462,6,6,'2019-08-21 15:10:44',1081.868000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9463,6,6,'2019-08-21 15:10:44',1082.834000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9464,6,6,'2019-08-21 15:10:44',1083.112000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9465,6,6,'2019-08-21 15:10:44',1083.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 (9466,6,6,'2019-08-21 15:10:44',1084.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 (9467,6,6,'2019-08-21 15:10:44',1085.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 (9468,6,6,'2019-08-21 15:10:44',1086.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 (9469,6,6,'2019-08-21 15:10:44',1086.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 (9470,6,6,'2019-08-21 15:10:44',1087.029000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9471,6,6,'2019-08-21 15:10:44',1087.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 (9472,6,6,'2019-08-21 15:10:44',1088.811000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9473,6,6,'2019-08-21 15:10:44',1089.078000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9474,6,6,'2019-08-21 15:10:44',1089.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 (9475,6,6,'2019-08-21 15:10:44',1090.708000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9476,6,6,'2019-08-21 15:10:44',1091.524000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9477,6,6,'2019-08-21 15:10:44',1091.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 (9478,6,6,'2019-08-21 15:10:44',1092.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 (9479,6,6,'2019-08-21 15:10:44',1093.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 (9480,6,6,'2019-08-21 15:10:44',1093.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 (9481,6,6,'2019-08-21 15:10:44',1094.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 (9482,6,6,'2019-08-21 15:10:44',1094.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 (9483,6,6,'2019-08-21 15:10:44',1095.853000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9484,6,6,'2019-08-21 15:10:44',1096.235000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9485,6,6,'2019-08-21 15:10:44',1096.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 (9486,6,6,'2019-08-21 15:10:44',1097.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 (9487,6,6,'2019-08-21 15:10:44',1098.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 (9488,6,6,'2019-08-21 15:10:44',1098.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 (9489,6,6,'2019-08-21 15:10:44',1099.499000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9490,6,6,'2019-08-21 15:10:44',1100.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 (9491,6,6,'2019-08-21 15:10:44',1100.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 (9492,6,6,'2019-08-21 15:10:44',1101.214000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9493,6,6,'2019-08-21 15:10:44',1102.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 (9494,6,6,'2019-08-21 15:10:44',1102.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 (9495,6,6,'2019-08-21 15:10:44',1103.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 (9496,6,6,'2019-08-21 15:10:44',1103.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 (9497,6,6,'2019-08-21 15:10:44',1104.110000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9498,6,6,'2019-08-21 15:10:44',1104.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 (9499,6,6,'2019-08-21 15:10:44',1105.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 (9500,6,6,'2019-08-21 15:10:44',1106.774000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9501,6,6,'2019-08-21 15:10:44',1107.606000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9502,6,6,'2019-08-21 15:10:44',1108.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 (9503,6,6,'2019-08-21 15:10:44',1109.404000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9504,6,6,'2019-08-21 15:10:44',1109.732000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9505,6,6,'2019-08-21 15:10:44',1110.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 (9506,6,6,'2019-08-21 15:10:44',1110.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 (9507,6,6,'2019-08-21 15:10:44',1111.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 (9508,6,6,'2019-08-21 15:10:44',1112.185000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9509,6,6,'2019-08-21 15:10:44',1113.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 (9510,6,6,'2019-08-21 15:10:44',1113.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 (9511,6,6,'2019-08-21 15:10:44',1113.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 (9512,6,6,'2019-08-21 15:10:44',1114.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 (9513,6,6,'2019-08-21 15:10:44',1115.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 (9514,6,6,'2019-08-21 15:10:44',1115.548000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9515,6,6,'2019-08-21 15:10:44',1116.447000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9516,6,6,'2019-08-21 15:10:44',1117.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 (9517,6,6,'2019-08-21 15:10:44',1118.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 (9518,6,6,'2019-08-21 15:10:44',1119.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 (9519,6,6,'2019-08-21 15:10:44',1120.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 (9520,6,6,'2019-08-21 15:10:44',1120.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 (9521,6,6,'2019-08-21 15:10:44',1121.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 (9522,6,6,'2019-08-21 15:10:44',1121.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 (9523,6,6,'2019-08-21 15:10:44',1121.975000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9524,6,6,'2019-08-21 15:10:44',1122.973000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9525,6,6,'2019-08-21 15:10:44',1123.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 (9526,6,6,'2019-08-21 15:10:44',1124.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 (9527,6,6,'2019-08-21 15:10:44',1125.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 (9528,6,6,'2019-08-21 15:10:44',1125.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 (9529,6,6,'2019-08-21 15:10:44',1126.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 (9530,6,6,'2019-08-21 15:10:44',1127.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 (9531,6,6,'2019-08-21 15:10:44',1127.550000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9532,6,6,'2019-08-21 15:10:44',1128.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 (9533,6,6,'2019-08-21 15:10:44',1129.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 (9534,6,6,'2019-08-21 15:10:44',1129.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 (9535,6,6,'2019-08-21 15:10:44',1130.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 (9536,6,6,'2019-08-21 15:10:44',1131.580000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9537,6,6,'2019-08-21 15:10:44',1131.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 (9538,6,6,'2019-08-21 15:10:44',1132.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 (9539,6,6,'2019-08-21 15:10:44',1132.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 (9540,6,6,'2019-08-21 15:10:44',1133.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 (9541,6,6,'2019-08-21 15:10:44',1133.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 (9542,6,6,'2019-08-21 15:10:44',1134.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 (9543,6,6,'2019-08-21 15:10:44',1135.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 (9544,6,6,'2019-08-21 15:10:44',1135.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 (9545,6,6,'2019-08-21 15:10:44',1136.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 (9546,6,6,'2019-08-21 15:10:44',1136.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 (9547,6,6,'2019-08-21 15:10:44',1137.724000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9548,6,6,'2019-08-21 15:10:44',1138.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 (9549,6,6,'2019-08-21 15:10:44',1139.405000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9550,6,6,'2019-08-21 15:10:44',1140.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 (9551,6,6,'2019-08-21 15:10:44',1141.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 (9552,6,6,'2019-08-21 15:10:44',1141.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 (9553,6,6,'2019-08-21 15:10:44',1141.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 (9554,6,6,'2019-08-21 15:10:44',1142.735000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9555,6,6,'2019-08-21 15:10:44',1143.085000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9556,6,6,'2019-08-21 15:10:44',1143.667000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9557,6,6,'2019-08-21 15:10:44',1144.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 (9558,6,6,'2019-08-21 15:10:44',1145.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 (9559,6,6,'2019-08-21 15:10:44',1145.730000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9560,6,6,'2019-08-21 15:10:44',1146.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 (9561,6,6,'2019-08-21 15:10:44',1147.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 (9562,6,6,'2019-08-21 15:10:44',1148.362000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9563,6,6,'2019-08-21 15:10:44',1148.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 (9564,6,6,'2019-08-21 15:10:44',1149.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 (9565,6,6,'2019-08-21 15:10:44',1149.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 (9566,6,6,'2019-08-21 15:10:44',1149.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 (9567,6,6,'2019-08-21 15:10:44',1150.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 (9568,6,6,'2019-08-21 15:10:44',1151.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 (9569,6,6,'2019-08-21 15:10:44',1152.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 (9570,6,6,'2019-08-21 15:10:44',1153.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 (9571,6,6,'2019-08-21 15:10:44',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 (9572,6,6,'2019-08-21 15:10:44',1154.455000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9573,6,6,'2019-08-21 15:10:44',1155.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 (9574,6,6,'2019-08-21 15:10:44',1155.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 (9575,6,6,'2019-08-21 15:10:44',1156.337000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9576,6,6,'2019-08-21 15:10:44',1156.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 (9577,6,6,'2019-08-21 15:10:44',1157.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 (9578,6,6,'2019-08-21 15:10:44',1158.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 (9579,6,6,'2019-08-21 15:10:44',1158.917000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9580,6,6,'2019-08-21 15:10:44',1159.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 (9581,6,6,'2019-08-21 15:10:44',1160.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 (9582,6,6,'2019-08-21 15:10:44',1160.882000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9583,6,6,'2019-08-21 15:10:44',1161.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 (9584,6,6,'2019-08-21 15:10:44',1162.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 (9585,6,6,'2019-08-21 15:10:44',1162.680000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9586,6,6,'2019-08-21 15:10:44',1163.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 (9587,6,6,'2019-08-21 15:10:44',1164.461000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9588,6,6,'2019-08-21 15:10:44',1165.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 (9589,6,6,'2019-08-21 15:10:44',1165.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 (9590,6,6,'2019-08-21 15:10:44',1166.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 (9591,6,6,'2019-08-21 15:10:44',1166.798000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9592,6,6,'2019-08-21 15:10:44',1167.059000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9593,6,6,'2019-08-21 15:10:44',1167.990000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9594,6,6,'2019-08-21 15:10:44',1168.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 (9595,6,6,'2019-08-21 15:10:44',1169.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 (9596,6,6,'2019-08-21 15:10:44',1169.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 (9597,6,6,'2019-08-21 15:10:44',1170.704000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9598,6,6,'2019-08-21 15:10:44',1171.653000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9599,6,6,'2019-08-21 15:10:44',1171.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 (9600,6,6,'2019-08-21 15:10:44',1172.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 (9601,6,6,'2019-08-21 15:10:44',1173.235000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9602,6,6,'2019-08-21 15:10:44',1174.001000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9603,6,6,'2019-08-21 15:10:44',1174.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 (9604,6,6,'2019-08-21 15:10:44',1174.850000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9605,6,6,'2019-08-21 15:10:44',1175.732000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9606,6,6,'2019-08-21 15:10:44',1176.045000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9607,6,6,'2019-08-21 15:10:44',1176.614000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9608,6,6,'2019-08-21 15:10:44',1177.530000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9609,6,6,'2019-08-21 15:10:44',1178.329000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9610,6,6,'2019-08-21 15:10:44',1179.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 (9611,6,6,'2019-08-21 15:10:44',1179.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 (9612,6,6,'2019-08-21 15:10:44',1179.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 (9613,6,6,'2019-08-21 15:10:44',1180.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 (9614,6,6,'2019-08-21 15:10:44',1181.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 (9615,6,6,'2019-08-21 15:10:44',1182.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 (9616,6,6,'2019-08-21 15:10:44',1182.758000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9617,6,6,'2019-08-21 15:10:44',1183.207000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9618,6,6,'2019-08-21 15:10:44',1184.007000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9619,6,6,'2019-08-21 15:10:44',1184.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 (9620,6,6,'2019-08-21 15:10:44',1184.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 (9621,7,7,'2019-08-21 15:10:50',25.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 (9622,7,7,'2019-08-21 15:10:50',26.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 (9623,7,7,'2019-08-21 15:10:50',26.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 (9624,7,7,'2019-08-21 15:10:50',27.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 (9625,7,7,'2019-08-21 15:10:50',27.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 (9626,7,7,'2019-08-21 15:10:50',28.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 (9627,7,7,'2019-08-21 15:10:50',28.933000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9628,7,7,'2019-08-21 15:10:50',29.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 (9629,7,7,'2019-08-21 15:10:50',30.548000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9630,7,7,'2019-08-21 15:10:50',31.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 (9631,7,7,'2019-08-21 15:10:50',32.495000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9632,7,7,'2019-08-21 15:10:50',32.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 (9633,7,7,'2019-08-21 15:10:50',33.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 (9634,7,7,'2019-08-21 15:10:50',34.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 (9635,7,7,'2019-08-21 15:10:50',34.977000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9636,7,7,'2019-08-21 15:10:50',35.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 (9637,7,7,'2019-08-21 15:10:50',35.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 (9638,7,7,'2019-08-21 15:10:50',36.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 (9639,7,7,'2019-08-21 15:10:50',37.656000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9640,7,7,'2019-08-21 15:10:50',38.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 (9641,7,7,'2019-08-21 15:10:50',38.930000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9642,7,7,'2019-08-21 15:10:50',39.488000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9643,7,7,'2019-08-21 15:10:50',39.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 (9644,7,7,'2019-08-21 15:10:50',40.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 (9645,7,7,'2019-08-21 15:10:50',41.286000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9646,7,7,'2019-08-21 15:10:50',42.185000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9647,7,7,'2019-08-21 15:10:50',43.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 (9648,7,7,'2019-08-21 15:10:50',43.473000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9649,7,7,'2019-08-21 15:10:50',44.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 (9650,7,7,'2019-08-21 15:10:50',44.432000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9651,7,7,'2019-08-21 15:10:50',44.999000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9652,7,7,'2019-08-21 15:10:50',45.848000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9653,7,7,'2019-08-21 15:10:50',46.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 (9654,7,7,'2019-08-21 15:10:50',47.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 (9655,7,7,'2019-08-21 15:10:50',48.127000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9656,7,7,'2019-08-21 15:10:50',48.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 (9657,7,7,'2019-08-21 15:10:50',49.086000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9658,7,7,'2019-08-21 15:10:50',49.511000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9659,7,7,'2019-08-21 15:10:50',50.359000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9660,7,7,'2019-08-21 15:10:50',51.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 (9661,7,7,'2019-08-21 15:10:50',52.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 (9662,7,7,'2019-08-21 15:10:50',53.106000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9663,7,7,'2019-08-21 15:10:50',54.089000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9664,7,7,'2019-08-21 15:10:50',54.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 (9665,7,7,'2019-08-21 15:10:50',55.071000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9666,7,7,'2019-08-21 15:10:50',55.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 (9667,7,7,'2019-08-21 15:10:50',56.886000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9668,7,7,'2019-08-21 15:10:50',57.151000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9669,7,7,'2019-08-21 15:10:50',57.734000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9670,7,7,'2019-08-21 15:10:50',58.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 (9671,7,7,'2019-08-21 15:10:50',59.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 (9672,7,7,'2019-08-21 15:10:50',60.282000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9673,7,7,'2019-08-21 15:10:50',60.564000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9674,7,7,'2019-08-21 15:10:50',61.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 (9675,7,7,'2019-08-21 15:10:50',62.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 (9676,7,7,'2019-08-21 15:10:50',62.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 (9677,7,7,'2019-08-21 15:10:50',62.979000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9678,7,7,'2019-08-21 15:10:50',63.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 (9679,7,7,'2019-08-21 15:10:50',64.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 (9680,7,7,'2019-08-21 15:10:50',65.776000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9681,7,7,'2019-08-21 15:10:50',66.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 (9682,7,7,'2019-08-21 15:10:50',66.741000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9683,7,7,'2019-08-21 15:10:50',67.187000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9684,7,7,'2019-08-21 15:10:50',67.591000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9685,7,7,'2019-08-21 15:10:50',68.540000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9686,7,7,'2019-08-21 15:10:50',69.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 (9687,7,7,'2019-08-21 15:10:50',69.670000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9688,7,7,'2019-08-21 15:10:50',70.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 (9689,7,7,'2019-08-21 15:10:50',71.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 (9690,7,7,'2019-08-21 15:10:50',71.952000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9691,7,7,'2019-08-21 15:10:50',72.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 (9692,7,7,'2019-08-21 15:10:50',73.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 (9693,7,7,'2019-08-21 15:10:50',73.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 (9694,7,7,'2019-08-21 15:10:50',74.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 (9695,7,7,'2019-08-21 15:10:50',75.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 (9696,7,7,'2019-08-21 15:10:50',76.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 (9697,7,7,'2019-08-21 15:10:50',77.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 (9698,7,7,'2019-08-21 15:10:50',77.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 (9699,7,7,'2019-08-21 15:10:50',78.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 (9700,7,7,'2019-08-21 15:10:50',78.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 (9701,7,7,'2019-08-21 15:10:50',79.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 (9702,7,7,'2019-08-21 15:10:50',79.533000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9703,7,7,'2019-08-21 15:10:50',80.127000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9704,7,7,'2019-08-21 15:10:50',80.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 (9705,7,7,'2019-08-21 15:10:50',80.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 (9706,7,7,'2019-08-21 15:10:50',81.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 (9707,7,7,'2019-08-21 15:10:50',82.624000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9708,7,7,'2019-08-21 15:10:50',83.606000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9709,7,7,'2019-08-21 15:10:50',84.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 (9710,7,7,'2019-08-21 15:10:50',85.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 (9711,7,7,'2019-08-21 15:10:50',86.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 (9712,7,7,'2019-08-21 15:10:50',86.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 (9713,7,7,'2019-08-21 15:10:50',87.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 (9714,7,7,'2019-08-21 15:10:50',88.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 (9715,7,7,'2019-08-21 15:10:50',88.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 (9716,7,7,'2019-08-21 15:10:50',89.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 (9717,7,7,'2019-08-21 15:10:50',89.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 (9718,7,7,'2019-08-21 15:10:50',90.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 (9719,7,7,'2019-08-21 15:10:50',90.900000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9720,7,7,'2019-08-21 15:10:50',91.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 (9721,7,7,'2019-08-21 15:10:50',92.413000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9722,7,7,'2019-08-21 15:10:50',93.329000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9723,7,7,'2019-08-21 15:10:50',94.312000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9724,7,7,'2019-08-21 15:10:50',94.636000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9725,7,7,'2019-08-21 15:10:50',95.261000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9726,7,7,'2019-08-21 15:10:50',95.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 (9727,7,7,'2019-08-21 15:10:50',96.026000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9728,7,7,'2019-08-21 15:10:50',96.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 (9729,7,7,'2019-08-21 15:10:50',97.857000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9730,7,7,'2019-08-21 15:10:50',98.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 (9731,7,7,'2019-08-21 15:10:50',98.790000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9732,7,7,'2019-08-21 15:10:50',99.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 (9733,7,7,'2019-08-21 15:10:50',100.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 (9734,7,7,'2019-08-21 15:10:50',101.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 (9735,7,7,'2019-08-21 15:10:50',102.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 (9736,7,7,'2019-08-21 15:10:50',103.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 (9737,7,7,'2019-08-21 15:10:50',104.101000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9738,7,7,'2019-08-21 15:10:50',104.367000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9739,7,7,'2019-08-21 15:10:50',104.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 (9740,7,7,'2019-08-21 15:10:50',105.356000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9741,7,7,'2019-08-21 15:10:50',105.982000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9742,7,7,'2019-08-21 15:10:50',106.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 (9743,7,7,'2019-08-21 15:10:50',107.946000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9744,7,7,'2019-08-21 15:10:50',108.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 (9745,7,7,'2019-08-21 15:10:50',109.152000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9746,7,7,'2019-08-21 15:10:50',109.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 (9747,7,7,'2019-08-21 15:10:50',110.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 (9748,7,7,'2019-08-21 15:10:50',110.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 (9749,7,7,'2019-08-21 15:10:50',111.609000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9750,7,7,'2019-08-21 15:10:50',112.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 (9751,7,7,'2019-08-21 15:10:50',113.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 (9752,7,7,'2019-08-21 15:10:50',114.323000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9753,7,7,'2019-08-21 15:10:50',114.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 (9754,7,7,'2019-08-21 15:10:50',115.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 (9755,7,7,'2019-08-21 15:10:50',115.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 (9756,7,7,'2019-08-21 15:10:50',116.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 (9757,7,7,'2019-08-21 15:10:50',117.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 (9758,7,7,'2019-08-21 15:10:50',117.380000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9759,7,7,'2019-08-21 15:10:50',117.936000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9760,7,7,'2019-08-21 15:10:50',118.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 (9761,7,7,'2019-08-21 15:10:50',118.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 (9762,7,7,'2019-08-21 15:10:50',119.700000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9763,7,7,'2019-08-21 15:10:50',120.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 (9764,7,7,'2019-08-21 15:10:50',121.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 (9765,7,7,'2019-08-21 15:10:50',122.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 (9766,7,7,'2019-08-21 15:10:50',122.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 (9767,7,7,'2019-08-21 15:10:50',123.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 (9768,7,7,'2019-08-21 15:10:50',124.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 (9769,7,7,'2019-08-21 15:10:50',124.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 (9770,7,7,'2019-08-21 15:10:50',125.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 (9771,7,7,'2019-08-21 15:10:50',125.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 (9772,7,7,'2019-08-21 15:10:50',126.743000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9773,7,7,'2019-08-21 15:10:50',127.625000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9774,7,7,'2019-08-21 15:10:50',127.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 (9775,7,7,'2019-08-21 15:10:50',128.541000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9776,7,7,'2019-08-21 15:10:50',129.374000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9777,7,7,'2019-08-21 15:10:50',129.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 (9778,7,7,'2019-08-21 15:10:50',130.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 (9779,7,7,'2019-08-21 15:10:50',131.271000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9780,7,7,'2019-08-21 15:10:50',132.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 (9781,7,7,'2019-08-21 15:10:50',133.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 (9782,7,7,'2019-08-21 15:10:50',134.052000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9783,7,7,'2019-08-21 15:10:50',134.900000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9784,7,7,'2019-08-21 15:10:50',135.732000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9785,7,7,'2019-08-21 15:10:50',136.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 (9786,7,7,'2019-08-21 15:10:50',136.985000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9787,7,7,'2019-08-21 15:10:50',137.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 (9788,7,7,'2019-08-21 15:10:50',137.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 (9789,7,7,'2019-08-21 15:10:50',138.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 (9790,7,7,'2019-08-21 15:10:50',139.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 (9791,7,7,'2019-08-21 15:10:50',139.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 (9792,7,7,'2019-08-21 15:10:50',140.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 (9793,7,7,'2019-08-21 15:10:50',141.377000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9794,7,7,'2019-08-21 15:10:50',142.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 (9795,7,7,'2019-08-21 15:10:50',143.108000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9796,7,7,'2019-08-21 15:10:50',143.436000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9797,7,7,'2019-08-21 15:10:50',144.023000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9798,7,7,'2019-08-21 15:10:50',144.823000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9799,7,7,'2019-08-21 15:10:50',145.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 (9800,7,7,'2019-08-21 15:10:50',146.091000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9801,7,7,'2019-08-21 15:10:50',146.638000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9802,7,7,'2019-08-21 15:10:50',147.470000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9803,7,7,'2019-08-21 15:10:50',148.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 (9804,7,7,'2019-08-21 15:10:50',148.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 (9805,7,7,'2019-08-21 15:10:50',149.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 (9806,7,7,'2019-08-21 15:10:50',150.001000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9807,7,7,'2019-08-21 15:10:50',150.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 (9808,7,7,'2019-08-21 15:10:50',151.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 (9809,7,7,'2019-08-21 15:10:50',152.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 (9810,7,7,'2019-08-21 15:10:50',152.914000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9811,7,7,'2019-08-21 15:10:50',153.764000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9812,7,7,'2019-08-21 15:10:50',154.157000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9813,7,7,'2019-08-21 15:10:50',154.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 (9814,7,7,'2019-08-21 15:10:50',155.495000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9815,7,7,'2019-08-21 15:10:50',155.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 (9816,7,7,'2019-08-21 15:10:50',156.261000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9817,7,7,'2019-08-21 15:10:50',156.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 (9818,7,7,'2019-08-21 15:10:50',157.143000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9819,7,7,'2019-08-21 15:10:50',158.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 (9820,7,7,'2019-08-21 15:10:50',158.957000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9821,7,7,'2019-08-21 15:10:50',159.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 (9822,7,7,'2019-08-21 15:10:50',160.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 (9823,7,7,'2019-08-21 15:10:50',161.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 (9824,7,7,'2019-08-21 15:10:50',161.838000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9825,7,7,'2019-08-21 15:10:50',162.653000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9826,7,7,'2019-08-21 15:10:50',163.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 (9827,7,7,'2019-08-21 15:10:50',164.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 (9828,7,7,'2019-08-21 15:10:50',164.575000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9829,7,7,'2019-08-21 15:10:50',165.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 (9830,7,7,'2019-08-21 15:10:50',165.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 (9831,7,7,'2019-08-21 15:10:50',166.849000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9832,7,7,'2019-08-21 15:10:50',167.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 (9833,7,7,'2019-08-21 15:10:50',167.765000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9834,7,7,'2019-08-21 15:10:50',168.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 (9835,7,7,'2019-08-21 15:10:50',169.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 (9836,7,7,'2019-08-21 15:10:50',169.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 (9837,7,7,'2019-08-21 15:10:50',170.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 (9838,7,7,'2019-08-21 15:10:50',171.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 (9839,7,7,'2019-08-21 15:10:50',171.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 (9840,7,7,'2019-08-21 15:10:50',171.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 (9841,7,7,'2019-08-21 15:10:50',172.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 (9842,7,7,'2019-08-21 15:10:50',172.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 (9843,7,7,'2019-08-21 15:10:50',173.908000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9844,7,7,'2019-08-21 15:10:50',174.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 (9845,7,7,'2019-08-21 15:10:50',175.689000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9846,7,7,'2019-08-21 15:10:50',176.639000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9847,7,7,'2019-08-21 15:10:50',177.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 (9848,7,7,'2019-08-21 15:10:50',177.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 (9849,7,7,'2019-08-21 15:10:50',178.437000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9850,7,7,'2019-08-21 15:10:50',179.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 (9851,7,7,'2019-08-21 15:10:50',179.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 (9852,7,7,'2019-08-21 15:10:50',180.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 (9853,7,7,'2019-08-21 15:10:50',181.134000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9854,7,7,'2019-08-21 15:10:50',181.982000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9855,7,7,'2019-08-21 15:10:50',182.403000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9856,7,7,'2019-08-21 15:10:50',182.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 (9857,7,7,'2019-08-21 15:10:50',183.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 (9858,7,7,'2019-08-21 15:10:50',184.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 (9859,7,7,'2019-08-21 15:10:50',185.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 (9860,7,7,'2019-08-21 15:10:50',185.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 (9861,7,7,'2019-08-21 15:10:50',186.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 (9862,7,7,'2019-08-21 15:10:50',187.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 (9863,7,7,'2019-08-21 15:10:50',187.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 (9864,7,7,'2019-08-21 15:10:50',188.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 (9865,7,7,'2019-08-21 15:10:50',189.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 (9866,7,7,'2019-08-21 15:10:50',189.624000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9867,7,7,'2019-08-21 15:10:50',189.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 (9868,7,7,'2019-08-21 15:10:50',190.590000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9869,7,7,'2019-08-21 15:10:50',191.438000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9870,7,7,'2019-08-21 15:10:50',192.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 (9871,7,7,'2019-08-21 15:10:50',192.629000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9872,7,7,'2019-08-21 15:10:50',193.187000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9873,7,7,'2019-08-21 15:10:50',193.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 (9874,7,7,'2019-08-21 15:10:50',193.970000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9875,7,7,'2019-08-21 15:10:50',194.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 (9876,7,7,'2019-08-21 15:10:50',195.617000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9877,7,7,'2019-08-21 15:10:50',196.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 (9878,7,7,'2019-08-21 15:10:50',197.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 (9879,7,7,'2019-08-21 15:10:50',198.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 (9880,7,7,'2019-08-21 15:10:50',199.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 (9881,7,7,'2019-08-21 15:10:50',199.776000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9882,7,7,'2019-08-21 15:10:50',200.412000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9883,7,7,'2019-08-21 15:10:50',201.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 (9884,7,7,'2019-08-21 15:10:50',201.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 (9885,7,7,'2019-08-21 15:10:50',202.094000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9886,7,7,'2019-08-21 15:10:50',202.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 (9887,7,7,'2019-08-21 15:10:50',203.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 (9888,7,7,'2019-08-21 15:10:50',203.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 (9889,7,7,'2019-08-21 15:10:50',204.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 (9890,7,7,'2019-08-21 15:10:50',204.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 (9891,7,7,'2019-08-21 15:10:50',205.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 (9892,7,7,'2019-08-21 15:10:50',206.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 (9893,7,7,'2019-08-21 15:10:50',207.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 (9894,7,7,'2019-08-21 15:10:50',208.014000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9895,7,7,'2019-08-21 15:10:50',208.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 (9896,7,7,'2019-08-21 15:10:50',209.419000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9897,7,7,'2019-08-21 15:10:50',210.185000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9898,7,7,'2019-08-21 15:10:50',211.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 (9899,7,7,'2019-08-21 15:10:50',211.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 (9900,7,7,'2019-08-21 15:10:50',212.000000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9901,7,7,'2019-08-21 15:10:50',212.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 (9902,7,7,'2019-08-21 15:10:50',213.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 (9903,7,7,'2019-08-21 15:10:50',213.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 (9904,7,7,'2019-08-21 15:10:50',214.580000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9905,7,7,'2019-08-21 15:10:50',215.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 (9906,7,7,'2019-08-21 15:10:50',216.395000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9907,7,7,'2019-08-21 15:10:50',216.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 (9908,7,7,'2019-08-21 15:10:50',217.360000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9909,7,7,'2019-08-21 15:10:50',218.359000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9910,7,7,'2019-08-21 15:10:50',219.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 (9911,7,7,'2019-08-21 15:10:50',219.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 (9912,7,7,'2019-08-21 15:10:50',220.240000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9913,7,7,'2019-08-21 15:10:50',220.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 (9914,7,7,'2019-08-21 15:10:50',221.007000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9915,7,7,'2019-08-21 15:10:50',221.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 (9916,7,7,'2019-08-21 15:10:50',222.705000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9917,7,7,'2019-08-21 15:10:50',223.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 (9918,7,7,'2019-08-21 15:10:50',224.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 (9919,7,7,'2019-08-21 15:10:50',225.352000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9920,7,7,'2019-08-21 15:10:50',226.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 (9921,7,7,'2019-08-21 15:10:50',226.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 (9922,7,7,'2019-08-21 15:10:50',227.315000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9923,7,7,'2019-08-21 15:10:50',227.882000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9924,7,7,'2019-08-21 15:10:50',228.153000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9925,7,7,'2019-08-21 15:10:50',228.682000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9926,7,7,'2019-08-21 15:10:50',229.597000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9927,7,7,'2019-08-21 15:10:50',229.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 (9928,7,7,'2019-08-21 15:10:50',230.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 (9929,7,7,'2019-08-21 15:10:50',231.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 (9930,7,7,'2019-08-21 15:10:50',232.145000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9931,7,7,'2019-08-21 15:10:50',233.127000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9932,7,7,'2019-08-21 15:10:50',233.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 (9933,7,7,'2019-08-21 15:10:50',233.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 (9934,7,7,'2019-08-21 15:10:50',234.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 (9935,7,7,'2019-08-21 15:10:50',235.220000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9936,7,7,'2019-08-21 15:10:50',235.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 (9937,7,7,'2019-08-21 15:10:50',236.889000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9938,7,7,'2019-08-21 15:10:50',237.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 (9939,7,7,'2019-08-21 15:10:50',237.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 (9940,7,7,'2019-08-21 15:10:50',238.620000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9941,7,7,'2019-08-21 15:10:50',239.403000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9942,7,7,'2019-08-21 15:10:50',240.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 (9943,7,7,'2019-08-21 15:10:50',241.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 (9944,7,7,'2019-08-21 15:10:50',241.499000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9945,7,7,'2019-08-21 15:10:50',242.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 (9946,7,7,'2019-08-21 15:10:50',242.327000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9947,7,7,'2019-08-21 15:10:50',242.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 (9948,7,7,'2019-08-21 15:10:50',243.765000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9949,7,7,'2019-08-21 15:10:50',244.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 (9950,7,7,'2019-08-21 15:10:50',245.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 (9951,7,7,'2019-08-21 15:10:50',246.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 (9952,7,7,'2019-08-21 15:10:50',247.228000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9953,7,7,'2019-08-21 15:10:50',247.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 (9954,7,7,'2019-08-21 15:10:50',248.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 (9955,7,7,'2019-08-21 15:10:50',248.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 (9956,7,7,'2019-08-21 15:10:50',249.109000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9957,7,7,'2019-08-21 15:10:50',249.975000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9958,7,7,'2019-08-21 15:10:50',250.808000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9959,7,7,'2019-08-21 15:10:50',251.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 (9960,7,7,'2019-08-21 15:10:50',251.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 (9961,7,7,'2019-08-21 15:10:50',252.639000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9962,7,7,'2019-08-21 15:10:50',253.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 (9963,7,7,'2019-08-21 15:10:50',254.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 (9964,7,7,'2019-08-21 15:10:50',254.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 (9965,7,7,'2019-08-21 15:10:50',255.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 (9966,7,7,'2019-08-21 15:10:50',256.019000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9967,7,7,'2019-08-21 15:10:50',256.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 (9968,7,7,'2019-08-21 15:10:50',256.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 (9969,7,7,'2019-08-21 15:10:50',257.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 (9970,7,7,'2019-08-21 15:10:50',258.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 (9971,7,7,'2019-08-21 15:10:50',259.024000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9972,7,7,'2019-08-21 15:10:50',259.697000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9973,7,7,'2019-08-21 15:10:50',260.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 (9974,7,7,'2019-08-21 15:10:50',261.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 (9975,7,7,'2019-08-21 15:10:50',262.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 (9976,7,7,'2019-08-21 15:10:50',263.160000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9977,7,7,'2019-08-21 15:10:50',263.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 (9978,7,7,'2019-08-21 15:10:50',264.159000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9979,7,7,'2019-08-21 15:10:50',264.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 (9980,7,7,'2019-08-21 15:10:50',264.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 (9981,7,7,'2019-08-21 15:10:50',265.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 (9982,7,7,'2019-08-21 15:10:50',266.673000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9983,7,7,'2019-08-21 15:10:50',267.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 (9984,7,7,'2019-08-21 15:10:50',267.969000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9985,7,7,'2019-08-21 15:10:50',268.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 (9986,7,7,'2019-08-21 15:10:50',269.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 (9987,7,7,'2019-08-21 15:10:50',270.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 (9988,7,7,'2019-08-21 15:10:50',270.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 (9989,7,7,'2019-08-21 15:10:50',270.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 (9990,7,7,'2019-08-21 15:10:50',271.651000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9991,7,7,'2019-08-21 15:10:50',272.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 (9992,7,7,'2019-08-21 15:10:50',273.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 (9993,7,7,'2019-08-21 15:10:50',273.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 (9994,7,7,'2019-08-21 15:10:50',274.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 (9995,7,7,'2019-08-21 15:10:50',274.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 (9996,7,7,'2019-08-21 15:10:50',275.048000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9997,7,7,'2019-08-21 15:10:50',275.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 (9998,7,7,'2019-08-21 15:10:50',276.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 (9999,7,7,'2019-08-21 15:10:50',277.216000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10000,7,7,'2019-08-21 15:10:50',277.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 (10001,7,7,'2019-08-21 15:10:50',278.527000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10002,7,7,'2019-08-21 15:10:50',278.811000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10003,7,7,'2019-08-21 15:10:50',279.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 (10004,7,7,'2019-08-21 15:10:50',280.342000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10005,7,7,'2019-08-21 15:10:50',281.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 (10006,7,7,'2019-08-21 15:10:50',282.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 (10007,7,7,'2019-08-21 15:10:50',283.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 (10008,7,7,'2019-08-21 15:10:50',283.838000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10009,7,7,'2019-08-21 15:10:50',284.231000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10010,7,7,'2019-08-21 15:10:50',284.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 (10011,7,7,'2019-08-21 15:10:50',285.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 (10012,7,7,'2019-08-21 15:10:50',285.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 (10013,7,7,'2019-08-21 15:10:50',286.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 (10014,7,7,'2019-08-21 15:10:50',287.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 (10015,7,7,'2019-08-21 15:10:50',287.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 (10016,7,7,'2019-08-21 15:10:50',288.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 (10017,7,7,'2019-08-21 15:10:50',289.099000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10018,7,7,'2019-08-21 15:10:50',289.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 (10019,7,7,'2019-08-21 15:10:50',290.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 (10020,7,7,'2019-08-21 15:10:50',291.066000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10021,7,7,'2019-08-21 15:10:50',303.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 (10022,7,7,'2019-08-21 15:10:50',327.599000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10023,7,7,'2019-08-21 15:10:50',327.987000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10024,7,7,'2019-08-21 15:10:50',328.480000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10025,7,7,'2019-08-21 15:10:50',329.496000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10026,7,7,'2019-08-21 15:10:50',329.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 (10027,7,7,'2019-08-21 15:10:50',330.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 (10028,7,7,'2019-08-21 15:10:50',331.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 (10029,7,7,'2019-08-21 15:10:50',331.977000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10030,7,7,'2019-08-21 15:10:50',332.893000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10031,7,7,'2019-08-21 15:10:50',333.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 (10032,7,7,'2019-08-21 15:10:50',334.176000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10033,7,7,'2019-08-21 15:10:50',334.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 (10034,7,7,'2019-08-21 15:10:50',335.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 (10035,7,7,'2019-08-21 15:10:50',336.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 (10036,7,7,'2019-08-21 15:10:50',336.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 (10037,7,7,'2019-08-21 15:10:50',337.388000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10038,7,7,'2019-08-21 15:10:50',338.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 (10039,7,7,'2019-08-21 15:10:50',339.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 (10040,7,7,'2019-08-21 15:10:50',339.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 (10041,7,7,'2019-08-21 15:10:50',340.750000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10042,7,7,'2019-08-21 15:10:50',341.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 (10043,7,7,'2019-08-21 15:10:50',341.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 (10044,7,7,'2019-08-21 15:10:50',342.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 (10045,7,7,'2019-08-21 15:10:50',342.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 (10046,7,7,'2019-08-21 15:10:50',343.230000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10047,7,7,'2019-08-21 15:10:50',343.997000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10048,7,7,'2019-08-21 15:10:50',344.341000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10049,7,7,'2019-08-21 15:10:50',344.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 (10050,7,7,'2019-08-21 15:10:50',345.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 (10051,7,7,'2019-08-21 15:10:50',346.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 (10052,7,7,'2019-08-21 15:10:50',347.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 (10053,7,7,'2019-08-21 15:10:50',347.626000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10054,7,7,'2019-08-21 15:10:50',348.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 (10055,7,7,'2019-08-21 15:10:50',349.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 (10056,7,7,'2019-08-21 15:10:50',350.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 (10057,7,7,'2019-08-21 15:10:50',350.297000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10058,7,7,'2019-08-21 15:10:50',350.956000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10059,7,7,'2019-08-21 15:10:50',351.738000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10060,7,7,'2019-08-21 15:10:50',352.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 (10061,7,7,'2019-08-21 15:10:50',352.604000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10062,7,7,'2019-08-21 15:10:50',353.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 (10063,7,7,'2019-08-21 15:10:50',353.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 (10064,7,7,'2019-08-21 15:10:50',354.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 (10065,7,7,'2019-08-21 15:10:50',355.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 (10066,7,7,'2019-08-21 15:10:50',356.050000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10067,7,7,'2019-08-21 15:10:50',356.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 (10068,7,7,'2019-08-21 15:10:50',356.833000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10069,7,7,'2019-08-21 15:10:50',357.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 (10070,7,7,'2019-08-21 15:10:50',358.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 (10071,7,7,'2019-08-21 15:10:50',359.380000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10072,7,7,'2019-08-21 15:10:50',360.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 (10073,7,7,'2019-08-21 15:10:50',360.583000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10074,7,7,'2019-08-21 15:10:50',361.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 (10075,7,7,'2019-08-21 15:10:50',361.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 (10076,7,7,'2019-08-21 15:10:50',362.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 (10077,7,7,'2019-08-21 15:10:50',363.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 (10078,7,7,'2019-08-21 15:10:50',363.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 (10079,7,7,'2019-08-21 15:10:50',364.841000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10080,7,7,'2019-08-21 15:10:50',365.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 (10081,7,7,'2019-08-21 15:10:50',366.605000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10082,7,7,'2019-08-21 15:10:50',367.555000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10083,7,7,'2019-08-21 15:10:50',367.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 (10084,7,7,'2019-08-21 15:10:50',368.486000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10085,7,7,'2019-08-21 15:10:50',368.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 (10086,7,7,'2019-08-21 15:10:50',369.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 (10087,7,7,'2019-08-21 15:10:50',369.709000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10088,7,7,'2019-08-21 15:10:50',370.268000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10089,7,7,'2019-08-21 15:10:50',371.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 (10090,7,7,'2019-08-21 15:10:50',372.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 (10091,7,7,'2019-08-21 15:10:50',372.998000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10092,7,7,'2019-08-21 15:10:50',373.343000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10093,7,7,'2019-08-21 15:10:50',373.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 (10094,7,7,'2019-08-21 15:10:50',374.863000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10095,7,7,'2019-08-21 15:10:50',375.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 (10096,7,7,'2019-08-21 15:10:50',376.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 (10097,7,7,'2019-08-21 15:10:50',377.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 (10098,7,7,'2019-08-21 15:10:50',377.977000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10099,7,7,'2019-08-21 15:10:50',378.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 (10100,7,7,'2019-08-21 15:10:50',379.087000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10101,7,7,'2019-08-21 15:10:50',379.475000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10102,7,7,'2019-08-21 15:10:50',380.341000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10103,7,7,'2019-08-21 15:10:50',381.355000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10104,7,7,'2019-08-21 15:10:50',382.205000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10105,7,7,'2019-08-21 15:10:50',383.037000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10106,7,7,'2019-08-21 15:10:50',383.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 (10107,7,7,'2019-08-21 15:10:50',384.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 (10108,7,7,'2019-08-21 15:10:50',384.853000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10109,7,7,'2019-08-21 15:10:50',385.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 (10110,7,7,'2019-08-21 15:10:50',385.784000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10111,7,7,'2019-08-21 15:10:50',386.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 (10112,7,7,'2019-08-21 15:10:50',386.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 (10113,7,7,'2019-08-21 15:10:50',387.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 (10114,7,7,'2019-08-21 15:10:50',387.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 (10115,7,7,'2019-08-21 15:10:50',388.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 (10116,7,7,'2019-08-21 15:10:50',389.330000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10117,7,7,'2019-08-21 15:10:50',390.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 (10118,7,7,'2019-08-21 15:10:50',390.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 (10119,7,7,'2019-08-21 15:10:50',391.828000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10120,7,7,'2019-08-21 15:10:50',392.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 (10121,7,7,'2019-08-21 15:10:50',392.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 (10122,7,7,'2019-08-21 15:10:50',393.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 (10123,7,7,'2019-08-21 15:10:50',394.658000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10124,7,7,'2019-08-21 15:10:50',395.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 (10125,7,7,'2019-08-21 15:10:50',395.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 (10126,7,7,'2019-08-21 15:10:50',396.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 (10127,7,7,'2019-08-21 15:10:50',397.505000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10128,7,7,'2019-08-21 15:10:50',398.504000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10129,7,7,'2019-08-21 15:10:50',398.802000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10130,7,7,'2019-08-21 15:10:50',399.287000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10131,7,7,'2019-08-21 15:10:50',400.136000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10132,7,7,'2019-08-21 15:10:50',401.001000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10133,7,7,'2019-08-21 15:10:50',401.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 (10134,7,7,'2019-08-21 15:10:50',401.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 (10135,7,7,'2019-08-21 15:10:50',402.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 (10136,7,7,'2019-08-21 15:10:50',403.072000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10137,7,7,'2019-08-21 15:10:50',403.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 (10138,7,7,'2019-08-21 15:10:50',404.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 (10139,7,7,'2019-08-21 15:10:50',405.663000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10140,7,7,'2019-08-21 15:10:50',405.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 (10141,7,7,'2019-08-21 15:10:50',406.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 (10142,7,7,'2019-08-21 15:10:50',407.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 (10143,7,7,'2019-08-21 15:10:50',408.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 (10144,7,7,'2019-08-21 15:10:50',409.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 (10145,7,7,'2019-08-21 15:10:50',409.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 (10146,7,7,'2019-08-21 15:10:50',410.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 (10147,7,7,'2019-08-21 15:10:50',411.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 (10148,7,7,'2019-08-21 15:10:50',411.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 (10149,7,7,'2019-08-21 15:10:50',411.873000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10150,7,7,'2019-08-21 15:10:50',412.771000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10151,7,7,'2019-08-21 15:10:50',413.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 (10152,7,7,'2019-08-21 15:10:50',413.704000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10153,7,7,'2019-08-21 15:10:50',414.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 (10154,7,7,'2019-08-21 15:10:50',415.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 (10155,7,7,'2019-08-21 15:10:50',416.201000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10156,7,7,'2019-08-21 15:10:50',417.084000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10157,7,7,'2019-08-21 15:10:50',417.376000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10158,7,7,'2019-08-21 15:10:50',417.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 (10159,7,7,'2019-08-21 15:10:50',418.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 (10160,7,7,'2019-08-21 15:10:50',419.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 (10161,7,7,'2019-08-21 15:10:50',420.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 (10162,7,7,'2019-08-21 15:10:50',420.809000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10163,7,7,'2019-08-21 15:10:50',421.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 (10164,7,7,'2019-08-21 15:10:50',421.646000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10165,7,7,'2019-08-21 15:10:50',422.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 (10166,7,7,'2019-08-21 15:10:50',423.110000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10167,7,7,'2019-08-21 15:10:50',423.413000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10168,7,7,'2019-08-21 15:10:50',423.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 (10169,7,7,'2019-08-21 15:10:50',424.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 (10170,7,7,'2019-08-21 15:10:50',425.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 (10171,7,7,'2019-08-21 15:10:50',425.841000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10172,7,7,'2019-08-21 15:10:50',426.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 (10173,7,7,'2019-08-21 15:10:50',427.855000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10174,7,7,'2019-08-21 15:10:50',428.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 (10175,7,7,'2019-08-21 15:10:50',429.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 (10176,7,7,'2019-08-21 15:10:50',429.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 (10177,7,7,'2019-08-21 15:10:50',430.253000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10178,7,7,'2019-08-21 15:10:50',431.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 (10179,7,7,'2019-08-21 15:10:50',432.167000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10180,7,7,'2019-08-21 15:10:50',432.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 (10181,7,7,'2019-08-21 15:10:50',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 (10182,7,7,'2019-08-21 15:10:50',433.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 (10183,7,7,'2019-08-21 15:10:50',434.305000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10184,7,7,'2019-08-21 15:10:50',434.897000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10185,7,7,'2019-08-21 15:10:50',435.112000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10186,7,7,'2019-08-21 15:10:50',435.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 (10187,7,7,'2019-08-21 15:10:50',436.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 (10188,7,7,'2019-08-21 15:10:50',436.829000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10189,7,7,'2019-08-21 15:10:50',437.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 (10190,7,7,'2019-08-21 15:10:50',438.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 (10191,7,7,'2019-08-21 15:10:50',439.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 (10192,7,7,'2019-08-21 15:10:50',440.059000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10193,7,7,'2019-08-21 15:10:50',440.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 (10194,7,7,'2019-08-21 15:10:50',441.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 (10195,7,7,'2019-08-21 15:10:50',442.390000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10196,7,7,'2019-08-21 15:10:50',443.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 (10197,7,7,'2019-08-21 15:10:50',443.612000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10198,7,7,'2019-08-21 15:10:50',444.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 (10199,7,7,'2019-08-21 15:10:50',444.920000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10200,7,7,'2019-08-21 15:10:50',445.571000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10201,7,7,'2019-08-21 15:10:50',445.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 (10202,7,7,'2019-08-21 15:10:50',446.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 (10203,7,7,'2019-08-21 15:10:50',447.551000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10204,7,7,'2019-08-21 15:10:50',448.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 (10205,7,7,'2019-08-21 15:10:50',448.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 (10206,7,7,'2019-08-21 15:10:50',449.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 (10207,7,7,'2019-08-21 15:10:50',450.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 (10208,7,7,'2019-08-21 15:10:50',451.113000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10209,7,7,'2019-08-21 15:10:50',451.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 (10210,7,7,'2019-08-21 15:10:50',452.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 (10211,7,7,'2019-08-21 15:10:50',452.778000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10212,7,7,'2019-08-21 15:10:50',453.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 (10213,7,7,'2019-08-21 15:10:50',454.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 (10214,7,7,'2019-08-21 15:10:50',454.717000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10215,7,7,'2019-08-21 15:10:50',455.192000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10216,7,7,'2019-08-21 15:10:50',456.124000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10217,7,7,'2019-08-21 15:10:50',456.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 (10218,7,7,'2019-08-21 15:10:50',457.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 (10219,7,7,'2019-08-21 15:10:50',458.078000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10220,7,7,'2019-08-21 15:10:50',458.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 (10221,7,7,'2019-08-21 15:10:50',459.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 (10222,7,7,'2019-08-21 15:10:50',459.653000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10223,7,7,'2019-08-21 15:10:50',460.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 (10224,7,7,'2019-08-21 15:10:50',460.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 (10225,7,7,'2019-08-21 15:10:50',461.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 (10226,7,7,'2019-08-21 15:10:50',461.702000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10227,7,7,'2019-08-21 15:10:50',462.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 (10228,7,7,'2019-08-21 15:10:50',463.200000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10229,7,7,'2019-08-21 15:10:50',464.183000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10230,7,7,'2019-08-21 15:10:50',465.114000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10231,7,7,'2019-08-21 15:10:50',466.080000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10232,7,7,'2019-08-21 15:10:50',467.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 (10233,7,7,'2019-08-21 15:10:50',468.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 (10234,7,7,'2019-08-21 15:10:50',468.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 (10235,7,7,'2019-08-21 15:10:50',469.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 (10236,7,7,'2019-08-21 15:10:50',469.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 (10237,7,7,'2019-08-21 15:10:50',470.081000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10238,7,7,'2019-08-21 15:10:50',470.809000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10239,7,7,'2019-08-21 15:10:50',471.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 (10240,7,7,'2019-08-21 15:10:50',472.640000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10241,7,7,'2019-08-21 15:10:50',472.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 (10242,7,7,'2019-08-21 15:10:50',473.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 (10243,7,7,'2019-08-21 15:10:50',474.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 (10244,7,7,'2019-08-21 15:10:50',475.486000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10245,7,7,'2019-08-21 15:10:50',476.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 (10246,7,7,'2019-08-21 15:10:50',476.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 (10247,7,7,'2019-08-21 15:10:50',477.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 (10248,7,7,'2019-08-21 15:10:50',478.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 (10249,7,7,'2019-08-21 15:10:50',479.016000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10250,7,7,'2019-08-21 15:10:50',479.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 (10251,7,7,'2019-08-21 15:10:50',480.297000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10252,7,7,'2019-08-21 15:10:50',480.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 (10253,7,7,'2019-08-21 15:10:50',481.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 (10254,7,7,'2019-08-21 15:10:50',481.796000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10255,7,7,'2019-08-21 15:10:50',482.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 (10256,7,7,'2019-08-21 15:10:50',483.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 (10257,7,7,'2019-08-21 15:10:50',483.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 (10258,7,7,'2019-08-21 15:10:50',484.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 (10259,7,7,'2019-08-21 15:10:50',484.749000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10260,7,7,'2019-08-21 15:10:50',485.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 (10261,7,7,'2019-08-21 15:10:50',486.142000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10262,7,7,'2019-08-21 15:10:50',487.074000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10263,7,7,'2019-08-21 15:10:50',487.873000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10264,7,7,'2019-08-21 15:10:50',488.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 (10265,7,7,'2019-08-21 15:10:50',488.639000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10266,7,7,'2019-08-21 15:10:50',489.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 (10267,7,7,'2019-08-21 15:10:50',490.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 (10268,7,7,'2019-08-21 15:10:50',491.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 (10269,7,7,'2019-08-21 15:10:50',491.583000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10270,7,7,'2019-08-21 15:10:50',492.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 (10271,7,7,'2019-08-21 15:10:50',492.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 (10272,7,7,'2019-08-21 15:10:50',493.783000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10273,7,7,'2019-08-21 15:10:50',494.732000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10274,7,7,'2019-08-21 15:10:50',495.056000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10275,7,7,'2019-08-21 15:10:50',495.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 (10276,7,7,'2019-08-21 15:10:50',496.514000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10277,7,7,'2019-08-21 15:10:50',496.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 (10278,7,7,'2019-08-21 15:10:50',497.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 (10279,7,7,'2019-08-21 15:10:50',498.395000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10280,7,7,'2019-08-21 15:10:50',498.911000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10281,7,7,'2019-08-21 15:10:50',499.294000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10282,7,7,'2019-08-21 15:10:50',499.598000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10283,7,7,'2019-08-21 15:10:50',500.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 (10284,7,7,'2019-08-21 15:10:50',501.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 (10285,7,7,'2019-08-21 15:10:50',502.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 (10286,7,7,'2019-08-21 15:10:50',502.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 (10287,7,7,'2019-08-21 15:10:50',503.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 (10288,7,7,'2019-08-21 15:10:50',504.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 (10289,7,7,'2019-08-21 15:10:50',504.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 (10290,7,7,'2019-08-21 15:10:50',504.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 (10291,7,7,'2019-08-21 15:10:50',505.387000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10292,7,7,'2019-08-21 15:10:50',506.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 (10293,7,7,'2019-08-21 15:10:50',507.169000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10294,7,7,'2019-08-21 15:10:50',508.117000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10295,7,7,'2019-08-21 15:10:50',509.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 (10296,7,7,'2019-08-21 15:10:50',509.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 (10297,7,7,'2019-08-21 15:10:50',510.914000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10298,7,7,'2019-08-21 15:10:50',511.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 (10299,7,7,'2019-08-21 15:10:50',512.696000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10300,7,7,'2019-08-21 15:10:50',512.942000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10301,7,7,'2019-08-21 15:10:50',513.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 (10302,7,7,'2019-08-21 15:10:50',513.821000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10303,7,7,'2019-08-21 15:10:50',514.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 (10304,7,7,'2019-08-21 15:10:50',514.811000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10305,7,7,'2019-08-21 15:10:50',515.343000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10306,7,7,'2019-08-21 15:10:50',516.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 (10307,7,7,'2019-08-21 15:10:50',517.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 (10308,7,7,'2019-08-21 15:10:50',517.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 (10309,7,7,'2019-08-21 15:10:50',518.206000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10310,7,7,'2019-08-21 15:10:50',519.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 (10311,7,7,'2019-08-21 15:10:50',520.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 (10312,7,7,'2019-08-21 15:10:50',520.342000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10313,7,7,'2019-08-21 15:10:50',520.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 (10314,7,7,'2019-08-21 15:10:50',521.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 (10315,7,7,'2019-08-21 15:10:50',522.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 (10316,7,7,'2019-08-21 15:10:50',522.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 (10317,7,7,'2019-08-21 15:10:50',523.801000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10318,7,7,'2019-08-21 15:10:50',524.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 (10319,7,7,'2019-08-21 15:10:50',525.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 (10320,7,7,'2019-08-21 15:10:50',526.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 (10321,7,7,'2019-08-21 15:10:50',527.247000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10322,7,7,'2019-08-21 15:10:50',528.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 (10323,7,7,'2019-08-21 15:10:50',528.620000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10324,7,7,'2019-08-21 15:10:50',529.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 (10325,7,7,'2019-08-21 15:10:50',529.447000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10326,7,7,'2019-08-21 15:10:50',530.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 (10327,7,7,'2019-08-21 15:10:50',530.876000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10328,7,7,'2019-08-21 15:10:50',531.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 (10329,7,7,'2019-08-21 15:10:50',532.143000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10330,7,7,'2019-08-21 15:10:50',532.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 (10331,7,7,'2019-08-21 15:10:50',533.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 (10332,7,7,'2019-08-21 15:10:50',533.788000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10333,7,7,'2019-08-21 15:10:50',534.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 (10334,7,7,'2019-08-21 15:10:50',535.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 (10335,7,7,'2019-08-21 15:10:50',536.387000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10336,7,7,'2019-08-21 15:10:50',536.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 (10337,7,7,'2019-08-21 15:10:50',537.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 (10338,7,7,'2019-08-21 15:10:50',538.068000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10339,7,7,'2019-08-21 15:10:50',538.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 (10340,7,7,'2019-08-21 15:10:50',539.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 (10341,7,7,'2019-08-21 15:10:50',540.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 (10342,7,7,'2019-08-21 15:10:50',540.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 (10343,7,7,'2019-08-21 15:10:50',541.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 (10344,7,7,'2019-08-21 15:10:50',542.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 (10345,7,7,'2019-08-21 15:10:50',543.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 (10346,7,7,'2019-08-21 15:10:50',544.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 (10347,7,7,'2019-08-21 15:10:50',544.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 (10348,7,7,'2019-08-21 15:10:50',545.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 (10349,7,7,'2019-08-21 15:10:50',545.487000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10350,7,7,'2019-08-21 15:10:50',545.977000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10351,7,7,'2019-08-21 15:10:50',546.925000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10352,7,7,'2019-08-21 15:10:50',547.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 (10353,7,7,'2019-08-21 15:10:50',548.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 (10354,7,7,'2019-08-21 15:10:50',548.920000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10355,7,7,'2019-08-21 15:10:50',549.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 (10356,7,7,'2019-08-21 15:10:50',550.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 (10357,7,7,'2019-08-21 15:10:50',550.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 (10358,7,7,'2019-08-21 15:10:50',551.370000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10359,7,7,'2019-08-21 15:10:50',552.270000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10360,7,7,'2019-08-21 15:10:50',552.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 (10361,7,7,'2019-08-21 15:10:50',553.235000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10362,7,7,'2019-08-21 15:10:50',554.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 (10363,7,7,'2019-08-21 15:10:50',554.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 (10364,7,7,'2019-08-21 15:10:50',555.330000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10365,7,7,'2019-08-21 15:10:50',555.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 (10366,7,7,'2019-08-21 15:10:50',556.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 (10367,7,7,'2019-08-21 15:10:50',557.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 (10368,7,7,'2019-08-21 15:10:50',558.086000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10369,7,7,'2019-08-21 15:10:50',558.496000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10370,7,7,'2019-08-21 15:10:50',558.853000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10371,7,7,'2019-08-21 15:10:50',559.312000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10372,7,7,'2019-08-21 15:10:50',560.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 (10373,7,7,'2019-08-21 15:10:50',561.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 (10374,7,7,'2019-08-21 15:10:50',562.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 (10375,7,7,'2019-08-21 15:10:50',562.975000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10376,7,7,'2019-08-21 15:10:50',563.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 (10377,7,7,'2019-08-21 15:10:50',564.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 (10378,7,7,'2019-08-21 15:10:50',564.822000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10379,7,7,'2019-08-21 15:10:50',565.755000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10380,7,7,'2019-08-21 15:10:50',566.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 (10381,7,7,'2019-08-21 15:10:50',566.868000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10382,7,7,'2019-08-21 15:10:50',567.319000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10383,7,7,'2019-08-21 15:10:50',568.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 (10384,7,7,'2019-08-21 15:10:50',569.067000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10385,7,7,'2019-08-21 15:10:50',570.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 (10386,7,7,'2019-08-21 15:10:50',570.849000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10387,7,7,'2019-08-21 15:10:50',571.209000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10388,7,7,'2019-08-21 15:10:50',571.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 (10389,7,7,'2019-08-21 15:10:50',572.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 (10390,7,7,'2019-08-21 15:10:50',572.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 (10391,7,7,'2019-08-21 15:10:50',573.496000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10392,7,7,'2019-08-21 15:10:50',573.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 (10393,7,7,'2019-08-21 15:10:50',574.412000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10394,7,7,'2019-08-21 15:10:50',575.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 (10395,7,7,'2019-08-21 15:10:50',575.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 (10396,7,7,'2019-08-21 15:10:50',576.926000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10397,7,7,'2019-08-21 15:10:50',577.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 (10398,7,7,'2019-08-21 15:10:50',577.774000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10399,7,7,'2019-08-21 15:10:50',578.757000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10400,7,7,'2019-08-21 15:10:50',579.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 (10401,7,7,'2019-08-21 15:10:50',580.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 (10402,7,7,'2019-08-21 15:10:50',581.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 (10403,7,7,'2019-08-21 15:10:50',582.137000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10404,7,7,'2019-08-21 15:10:50',582.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 (10405,7,7,'2019-08-21 15:10:50',583.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 (10406,7,7,'2019-08-21 15:10:50',583.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 (10407,7,7,'2019-08-21 15:10:50',583.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 (10408,7,7,'2019-08-21 15:10:50',584.601000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10409,7,7,'2019-08-21 15:10:50',585.550000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10410,7,7,'2019-08-21 15:10:50',585.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 (10411,7,7,'2019-08-21 15:10:50',586.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 (10412,7,7,'2019-08-21 15:10:50',586.814000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10413,7,7,'2019-08-21 15:10:50',587.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 (10414,7,7,'2019-08-21 15:10:50',588.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 (10415,7,7,'2019-08-21 15:10:50',588.946000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10416,7,7,'2019-08-21 15:10:50',589.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 (10417,7,7,'2019-08-21 15:10:50',590.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 (10418,7,7,'2019-08-21 15:10:50',590.627000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10419,7,7,'2019-08-21 15:10:50',591.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 (10420,7,7,'2019-08-21 15:10:50',592.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 (10421,7,7,'2019-08-21 15:10:50',593.191000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10422,7,7,'2019-08-21 15:10:50',593.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 (10423,7,7,'2019-08-21 15:10:50',605.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 (10424,7,7,'2019-08-21 15:10:50',629.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 (10425,7,7,'2019-08-21 15:10:50',630.358000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10426,7,7,'2019-08-21 15:10:50',631.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 (10427,7,7,'2019-08-21 15:10:50',631.441000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10428,7,7,'2019-08-21 15:10:50',631.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 (10429,7,7,'2019-08-21 15:10:50',632.148000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10430,7,7,'2019-08-21 15:10:50',632.839000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10431,7,7,'2019-08-21 15:10:50',633.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 (10432,7,7,'2019-08-21 15:10:50',634.721000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10433,7,7,'2019-08-21 15:10:50',635.086000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10434,7,7,'2019-08-21 15:10:50',635.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 (10435,7,7,'2019-08-21 15:10:50',636.452000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10436,7,7,'2019-08-21 15:10:50',637.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 (10437,7,7,'2019-08-21 15:10:50',638.200000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10438,7,7,'2019-08-21 15:10:50',639.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 (10439,7,7,'2019-08-21 15:10:50',639.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 (10440,7,7,'2019-08-21 15:10:50',639.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 (10441,7,7,'2019-08-21 15:10:50',640.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 (10442,7,7,'2019-08-21 15:10:50',640.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 (10443,7,7,'2019-08-21 15:10:50',641.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 (10444,7,7,'2019-08-21 15:10:50',641.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 (10445,7,7,'2019-08-21 15:10:50',642.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 (10446,7,7,'2019-08-21 15:10:50',643.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 (10447,7,7,'2019-08-21 15:10:50',644.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 (10448,7,7,'2019-08-21 15:10:50',644.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 (10449,7,7,'2019-08-21 15:10:50',645.625000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10450,7,7,'2019-08-21 15:10:50',645.968000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10451,7,7,'2019-08-21 15:10:50',646.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 (10452,7,7,'2019-08-21 15:10:50',647.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 (10453,7,7,'2019-08-21 15:10:50',647.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 (10454,7,7,'2019-08-21 15:10:50',648.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 (10455,7,7,'2019-08-21 15:10:50',648.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 (10456,7,7,'2019-08-21 15:10:50',649.888000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10457,7,7,'2019-08-21 15:10:50',650.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 (10458,7,7,'2019-08-21 15:10:50',650.770000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10459,7,7,'2019-08-21 15:10:50',651.535000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10460,7,7,'2019-08-21 15:10:50',652.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 (10461,7,7,'2019-08-21 15:10:50',653.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 (10462,7,7,'2019-08-21 15:10:50',654.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 (10463,7,7,'2019-08-21 15:10:50',654.599000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10464,7,7,'2019-08-21 15:10:50',655.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 (10465,7,7,'2019-08-21 15:10:50',655.427000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10466,7,7,'2019-08-21 15:10:50',655.931000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10467,7,7,'2019-08-21 15:10:50',656.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 (10468,7,7,'2019-08-21 15:10:50',657.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 (10469,7,7,'2019-08-21 15:10:50',658.678000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10470,7,7,'2019-08-21 15:10:50',659.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 (10471,7,7,'2019-08-21 15:10:50',659.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 (10472,7,7,'2019-08-21 15:10:50',660.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 (10473,7,7,'2019-08-21 15:10:50',661.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 (10474,7,7,'2019-08-21 15:10:50',662.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 (10475,7,7,'2019-08-21 15:10:50',662.695000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10476,7,7,'2019-08-21 15:10:50',663.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 (10477,7,7,'2019-08-21 15:10:50',663.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 (10478,7,7,'2019-08-21 15:10:50',664.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 (10479,7,7,'2019-08-21 15:10:50',665.254000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10480,7,7,'2019-08-21 15:10:50',666.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 (10481,7,7,'2019-08-21 15:10:50',667.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 (10482,7,7,'2019-08-21 15:10:50',668.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 (10483,7,7,'2019-08-21 15:10:50',668.378000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10484,7,7,'2019-08-21 15:10:50',668.800000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10485,7,7,'2019-08-21 15:10:50',669.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 (10486,7,7,'2019-08-21 15:10:50',669.683000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10487,7,7,'2019-08-21 15:10:50',670.481000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10488,7,7,'2019-08-21 15:10:50',671.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 (10489,7,7,'2019-08-21 15:10:50',672.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 (10490,7,7,'2019-08-21 15:10:50',673.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 (10491,7,7,'2019-08-21 15:10:50',674.228000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10492,7,7,'2019-08-21 15:10:50',674.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 (10493,7,7,'2019-08-21 15:10:50',675.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 (10494,7,7,'2019-08-21 15:10:50',675.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 (10495,7,7,'2019-08-21 15:10:50',676.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 (10496,7,7,'2019-08-21 15:10:50',676.941000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10497,7,7,'2019-08-21 15:10:50',677.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 (10498,7,7,'2019-08-21 15:10:50',678.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 (10499,7,7,'2019-08-21 15:10:50',678.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 (10500,7,7,'2019-08-21 15:10:50',679.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 (10501,7,7,'2019-08-21 15:10:50',679.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 (10502,7,7,'2019-08-21 15:10:50',680.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 (10503,7,7,'2019-08-21 15:10:50',681.286000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10504,7,7,'2019-08-21 15:10:50',682.252000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10505,7,7,'2019-08-21 15:10:50',683.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 (10506,7,7,'2019-08-21 15:10:50',683.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 (10507,7,7,'2019-08-21 15:10:50',684.100000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10508,7,7,'2019-08-21 15:10:50',685.016000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10509,7,7,'2019-08-21 15:10:50',685.337000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10510,7,7,'2019-08-21 15:10:50',685.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 (10511,7,7,'2019-08-21 15:10:50',686.614000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10512,7,7,'2019-08-21 15:10:50',687.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 (10513,7,7,'2019-08-21 15:10:50',688.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 (10514,7,7,'2019-08-21 15:10:50',688.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 (10515,7,7,'2019-08-21 15:10:50',689.161000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10516,7,7,'2019-08-21 15:10:50',690.160000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10517,7,7,'2019-08-21 15:10:50',690.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 (10518,7,7,'2019-08-21 15:10:50',691.741000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10519,7,7,'2019-08-21 15:10:50',692.020000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10520,7,7,'2019-08-21 15:10:50',692.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 (10521,7,7,'2019-08-21 15:10:50',692.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 (10522,7,7,'2019-08-21 15:10:50',693.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 (10523,7,7,'2019-08-21 15:10:50',694.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 (10524,7,7,'2019-08-21 15:10:50',695.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 (10525,7,7,'2019-08-21 15:10:50',696.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 (10526,7,7,'2019-08-21 15:10:50',696.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 (10527,7,7,'2019-08-21 15:10:50',697.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 (10528,7,7,'2019-08-21 15:10:50',698.118000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10529,7,7,'2019-08-21 15:10:50',698.399000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10530,7,7,'2019-08-21 15:10:50',698.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 (10531,7,7,'2019-08-21 15:10:50',699.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 (10532,7,7,'2019-08-21 15:10:50',700.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 (10533,7,7,'2019-08-21 15:10:50',701.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 (10534,7,7,'2019-08-21 15:10:50',702.313000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10535,7,7,'2019-08-21 15:10:50',702.649000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10536,7,7,'2019-08-21 15:10:50',703.129000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10537,7,7,'2019-08-21 15:10:50',703.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 (10538,7,7,'2019-08-21 15:10:50',703.995000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10539,7,7,'2019-08-21 15:10:50',704.794000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10540,7,7,'2019-08-21 15:10:50',705.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 (10541,7,7,'2019-08-21 15:10:50',705.950000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10542,7,7,'2019-08-21 15:10:50',706.642000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10543,7,7,'2019-08-21 15:10:50',707.508000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10544,7,7,'2019-08-21 15:10:50',708.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 (10545,7,7,'2019-08-21 15:10:50',708.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 (10546,7,7,'2019-08-21 15:10:50',709.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 (10547,7,7,'2019-08-21 15:10:50',710.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 (10548,7,7,'2019-08-21 15:10:50',710.352000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10549,7,7,'2019-08-21 15:10:50',710.787000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10550,7,7,'2019-08-21 15:10:50',711.720000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10551,7,7,'2019-08-21 15:10:50',712.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 (10552,7,7,'2019-08-21 15:10:50',713.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 (10553,7,7,'2019-08-21 15:10:50',713.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 (10554,7,7,'2019-08-21 15:10:50',714.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 (10555,7,7,'2019-08-21 15:10:50',714.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 (10556,7,7,'2019-08-21 15:10:50',715.932000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10557,7,7,'2019-08-21 15:10:50',716.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 (10558,7,7,'2019-08-21 15:10:50',717.125000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10559,7,7,'2019-08-21 15:10:50',717.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 (10560,7,7,'2019-08-21 15:10:50',718.695000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10561,7,7,'2019-08-21 15:10:50',719.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 (10562,7,7,'2019-08-21 15:10:50',719.921000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10563,7,7,'2019-08-21 15:10:50',720.427000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10564,7,7,'2019-08-21 15:10:50',721.409000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10565,7,7,'2019-08-21 15:10:50',721.769000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10566,7,7,'2019-08-21 15:10:50',722.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 (10567,7,7,'2019-08-21 15:10:50',723.124000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10568,7,7,'2019-08-21 15:10:50',724.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 (10569,7,7,'2019-08-21 15:10:50',724.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 (10570,7,7,'2019-08-21 15:10:50',725.821000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10571,7,7,'2019-08-21 15:10:50',726.804000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10572,7,7,'2019-08-21 15:10:50',727.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 (10573,7,7,'2019-08-21 15:10:50',727.786000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10574,7,7,'2019-08-21 15:10:50',728.585000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10575,7,7,'2019-08-21 15:10:50',728.885000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10576,7,7,'2019-08-21 15:10:50',729.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 (10577,7,7,'2019-08-21 15:10:50',729.985000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10578,7,7,'2019-08-21 15:10:50',730.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 (10579,7,7,'2019-08-21 15:10:50',731.115000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10580,7,7,'2019-08-21 15:10:50',731.429000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10581,7,7,'2019-08-21 15:10:50',731.948000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10582,7,7,'2019-08-21 15:10:50',732.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 (10583,7,7,'2019-08-21 15:10:50',733.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 (10584,7,7,'2019-08-21 15:10:50',734.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 (10585,7,7,'2019-08-21 15:10:50',735.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 (10586,7,7,'2019-08-21 15:10:50',735.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 (10587,7,7,'2019-08-21 15:10:50',736.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 (10588,7,7,'2019-08-21 15:10:50',737.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 (10589,7,7,'2019-08-21 15:10:50',738.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 (10590,7,7,'2019-08-21 15:10:50',738.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 (10591,7,7,'2019-08-21 15:10:50',739.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 (10592,7,7,'2019-08-21 15:10:50',739.956000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10593,7,7,'2019-08-21 15:10:50',740.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 (10594,7,7,'2019-08-21 15:10:50',741.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 (10595,7,7,'2019-08-21 15:10:50',741.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 (10596,7,7,'2019-08-21 15:10:50',742.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 (10597,7,7,'2019-08-21 15:10:50',743.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 (10598,7,7,'2019-08-21 15:10:50',744.501000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10599,7,7,'2019-08-21 15:10:50',744.823000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10600,7,7,'2019-08-21 15:10:50',745.500000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10601,7,7,'2019-08-21 15:10:50',746.349000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10602,7,7,'2019-08-21 15:10:50',747.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 (10603,7,7,'2019-08-21 15:10:50',747.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 (10604,7,7,'2019-08-21 15:10:50',747.931000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10605,7,7,'2019-08-21 15:10:50',748.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 (10606,7,7,'2019-08-21 15:10:50',749.285000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10607,7,7,'2019-08-21 15:10:50',749.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 (10608,7,7,'2019-08-21 15:10:50',750.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 (10609,7,7,'2019-08-21 15:10:50',751.443000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10610,7,7,'2019-08-21 15:10:50',752.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 (10611,7,7,'2019-08-21 15:10:50',753.208000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10612,7,7,'2019-08-21 15:10:50',753.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 (10613,7,7,'2019-08-21 15:10:50',754.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 (10614,7,7,'2019-08-21 15:10:50',754.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 (10615,7,7,'2019-08-21 15:10:50',755.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 (10616,7,7,'2019-08-21 15:10:50',755.972000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10617,7,7,'2019-08-21 15:10:50',756.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 (10618,7,7,'2019-08-21 15:10:50',757.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 (10619,7,7,'2019-08-21 15:10:50',758.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 (10620,7,7,'2019-08-21 15:10:50',758.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 (10621,7,7,'2019-08-21 15:10:50',759.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 (10622,7,7,'2019-08-21 15:10:50',759.732000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10623,7,7,'2019-08-21 15:10:50',760.316000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10624,7,7,'2019-08-21 15:10:50',761.232000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10625,7,7,'2019-08-21 15:10:50',761.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 (10626,7,7,'2019-08-21 15:10:50',762.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 (10627,7,7,'2019-08-21 15:10:50',762.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 (10628,7,7,'2019-08-21 15:10:50',763.779000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10629,7,7,'2019-08-21 15:10:50',764.596000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10630,7,7,'2019-08-21 15:10:50',764.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 (10631,7,7,'2019-08-21 15:10:50',765.378000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10632,7,7,'2019-08-21 15:10:50',766.344000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10633,7,7,'2019-08-21 15:10:50',767.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 (10634,7,7,'2019-08-21 15:10:50',767.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 (10635,7,7,'2019-08-21 15:10:50',768.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 (10636,7,7,'2019-08-21 15:10:50',768.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 (10637,7,7,'2019-08-21 15:10:50',769.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 (10638,7,7,'2019-08-21 15:10:50',769.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 (10639,7,7,'2019-08-21 15:10:50',770.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 (10640,7,7,'2019-08-21 15:10:50',771.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 (10641,7,7,'2019-08-21 15:10:50',772.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 (10642,7,7,'2019-08-21 15:10:50',773.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 (10643,7,7,'2019-08-21 15:10:50',773.902000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10644,7,7,'2019-08-21 15:10:50',774.751000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10645,7,7,'2019-08-21 15:10:50',775.056000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10646,7,7,'2019-08-21 15:10:50',775.533000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10647,7,7,'2019-08-21 15:10:50',775.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 (10648,7,7,'2019-08-21 15:10:50',776.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 (10649,7,7,'2019-08-21 15:10:50',777.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 (10650,7,7,'2019-08-21 15:10:50',778.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 (10651,7,7,'2019-08-21 15:10:50',779.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 (10652,7,7,'2019-08-21 15:10:50',779.295000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10653,7,7,'2019-08-21 15:10:50',779.945000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10654,7,7,'2019-08-21 15:10:50',780.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 (10655,7,7,'2019-08-21 15:10:50',781.223000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10656,7,7,'2019-08-21 15:10:50',781.776000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10657,7,7,'2019-08-21 15:10:50',782.132000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10658,7,7,'2019-08-21 15:10:50',782.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 (10659,7,7,'2019-08-21 15:10:50',783.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 (10660,7,7,'2019-08-21 15:10:50',783.717000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10661,7,7,'2019-08-21 15:10:50',784.308000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10662,7,7,'2019-08-21 15:10:50',785.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 (10663,7,7,'2019-08-21 15:10:50',786.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 (10664,7,7,'2019-08-21 15:10:50',787.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 (10665,7,7,'2019-08-21 15:10:50',788.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 (10666,7,7,'2019-08-21 15:10:50',788.853000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10667,7,7,'2019-08-21 15:10:50',789.167000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10668,7,7,'2019-08-21 15:10:50',789.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 (10669,7,7,'2019-08-21 15:10:50',790.783000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10670,7,7,'2019-08-21 15:10:50',791.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 (10671,7,7,'2019-08-21 15:10:50',791.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 (10672,7,7,'2019-08-21 15:10:50',792.548000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10673,7,7,'2019-08-21 15:10:50',793.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 (10674,7,7,'2019-08-21 15:10:50',794.413000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10675,7,7,'2019-08-21 15:10:50',794.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 (10676,7,7,'2019-08-21 15:10:50',795.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 (10677,7,7,'2019-08-21 15:10:50',796.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 (10678,7,7,'2019-08-21 15:10:50',796.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 (10679,7,7,'2019-08-21 15:10:50',796.794000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10680,7,7,'2019-08-21 15:10:50',797.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 (10681,7,7,'2019-08-21 15:10:50',798.358000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10682,7,7,'2019-08-21 15:10:50',798.717000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10683,7,7,'2019-08-21 15:10:50',799.341000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10684,7,7,'2019-08-21 15:10:50',799.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 (10685,7,7,'2019-08-21 15:10:50',800.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 (10686,7,7,'2019-08-21 15:10:50',801.155000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10687,7,7,'2019-08-21 15:10:50',802.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 (10688,7,7,'2019-08-21 15:10:50',803.087000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10689,7,7,'2019-08-21 15:10:50',803.936000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10690,7,7,'2019-08-21 15:10:50',804.258000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10691,7,7,'2019-08-21 15:10:50',804.868000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10692,7,7,'2019-08-21 15:10:50',805.784000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10693,7,7,'2019-08-21 15:10:50',806.146000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10694,7,7,'2019-08-21 15:10:50',806.566000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10695,7,7,'2019-08-21 15:10:50',807.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 (10696,7,7,'2019-08-21 15:10:50',808.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 (10697,7,7,'2019-08-21 15:10:50',808.659000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10698,7,7,'2019-08-21 15:10:50',809.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 (10699,7,7,'2019-08-21 15:10:50',810.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 (10700,7,7,'2019-08-21 15:10:50',810.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 (10701,7,7,'2019-08-21 15:10:50',811.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 (10702,7,7,'2019-08-21 15:10:50',811.977000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10703,7,7,'2019-08-21 15:10:50',812.826000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10704,7,7,'2019-08-21 15:10:50',813.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 (10705,7,7,'2019-08-21 15:10:50',814.374000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10706,7,7,'2019-08-21 15:10:50',814.716000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10707,7,7,'2019-08-21 15:10:50',815.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 (10708,7,7,'2019-08-21 15:10:50',816.223000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10709,7,7,'2019-08-21 15:10:50',817.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 (10710,7,7,'2019-08-21 15:10:50',817.341000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10711,7,7,'2019-08-21 15:10:50',817.971000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10712,7,7,'2019-08-21 15:10:50',818.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 (10713,7,7,'2019-08-21 15:10:50',819.248000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10714,7,7,'2019-08-21 15:10:50',819.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 (10715,7,7,'2019-08-21 15:10:50',820.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 (10716,7,7,'2019-08-21 15:10:50',821.717000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10717,7,7,'2019-08-21 15:10:50',822.034000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10718,7,7,'2019-08-21 15:10:50',822.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 (10719,7,7,'2019-08-21 15:10:50',823.564000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10720,7,7,'2019-08-21 15:10:50',824.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 (10721,7,7,'2019-08-21 15:10:50',825.129000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10722,7,7,'2019-08-21 15:10:50',825.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 (10723,7,7,'2019-08-21 15:10:50',826.345000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10724,7,7,'2019-08-21 15:10:50',826.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 (10725,7,7,'2019-08-21 15:10:50',827.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 (10726,7,7,'2019-08-21 15:10:50',827.644000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10727,7,7,'2019-08-21 15:10:50',828.492000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10728,7,7,'2019-08-21 15:10:50',829.425000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10729,7,7,'2019-08-21 15:10:50',830.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 (10730,7,7,'2019-08-21 15:10:50',831.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 (10731,7,7,'2019-08-21 15:10:50',831.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 (10732,7,7,'2019-08-21 15:10:50',831.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 (10733,7,7,'2019-08-21 15:10:50',832.280000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10734,7,7,'2019-08-21 15:10:50',832.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 (10735,7,7,'2019-08-21 15:10:50',833.139000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10736,7,7,'2019-08-21 15:10:50',833.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 (10737,7,7,'2019-08-21 15:10:50',834.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 (10738,7,7,'2019-08-21 15:10:50',834.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 (10739,7,7,'2019-08-21 15:10:50',835.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 (10740,7,7,'2019-08-21 15:10:50',835.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 (10741,7,7,'2019-08-21 15:10:50',836.217000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10742,7,7,'2019-08-21 15:10:50',836.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 (10743,7,7,'2019-08-21 15:10:50',837.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 (10744,7,7,'2019-08-21 15:10:50',838.881000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10745,7,7,'2019-08-21 15:10:50',839.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 (10746,7,7,'2019-08-21 15:10:50',840.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 (10747,7,7,'2019-08-21 15:10:50',841.113000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10748,7,7,'2019-08-21 15:10:50',841.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 (10749,7,7,'2019-08-21 15:10:50',842.394000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10750,7,7,'2019-08-21 15:10:50',843.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 (10751,7,7,'2019-08-21 15:10:50',843.747000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10752,7,7,'2019-08-21 15:10:50',844.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 (10753,7,7,'2019-08-21 15:10:50',845.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 (10754,7,7,'2019-08-21 15:10:50',846.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 (10755,7,7,'2019-08-21 15:10:50',846.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 (10756,7,7,'2019-08-21 15:10:50',847.341000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10757,7,7,'2019-08-21 15:10:50',847.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 (10758,7,7,'2019-08-21 15:10:50',848.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 (10759,7,7,'2019-08-21 15:10:50',849.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 (10760,7,7,'2019-08-21 15:10:50',850.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 (10761,7,7,'2019-08-21 15:10:50',850.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 (10762,7,7,'2019-08-21 15:10:50',851.056000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10763,7,7,'2019-08-21 15:10:50',851.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 (10764,7,7,'2019-08-21 15:10:50',852.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 (10765,7,7,'2019-08-21 15:10:50',853.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 (10766,7,7,'2019-08-21 15:10:50',854.298000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10767,7,7,'2019-08-21 15:10:50',855.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 (10768,7,7,'2019-08-21 15:10:50',855.537000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10769,7,7,'2019-08-21 15:10:50',856.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 (10770,7,7,'2019-08-21 15:10:50',856.355000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10771,7,7,'2019-08-21 15:10:50',856.944000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10772,7,7,'2019-08-21 15:10:50',857.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 (10773,7,7,'2019-08-21 15:10:50',857.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 (10774,7,7,'2019-08-21 15:10:50',858.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 (10775,7,7,'2019-08-21 15:10:50',859.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 (10776,7,7,'2019-08-21 15:10:50',860.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 (10777,7,7,'2019-08-21 15:10:50',861.390000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10778,7,7,'2019-08-21 15:10:50',862.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 (10779,7,7,'2019-08-21 15:10:50',863.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 (10780,7,7,'2019-08-21 15:10:50',863.987000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10781,7,7,'2019-08-21 15:10:50',864.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 (10782,7,7,'2019-08-21 15:10:50',864.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 (10783,7,7,'2019-08-21 15:10:50',865.885000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10784,7,7,'2019-08-21 15:10:50',866.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 (10785,7,7,'2019-08-21 15:10:50',866.667000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10786,7,7,'2019-08-21 15:10:50',867.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 (10787,7,7,'2019-08-21 15:10:50',867.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 (10788,7,7,'2019-08-21 15:10:50',868.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 (10789,7,7,'2019-08-21 15:10:50',869.464000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10790,7,7,'2019-08-21 15:10:50',870.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 (10791,7,7,'2019-08-21 15:10:50',870.628000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10792,7,7,'2019-08-21 15:10:50',871.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 (10793,7,7,'2019-08-21 15:10:50',872.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 (10794,7,7,'2019-08-21 15:10:50',872.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 (10795,7,7,'2019-08-21 15:10:50',873.909000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10796,7,7,'2019-08-21 15:10:50',874.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 (10797,7,7,'2019-08-21 15:10:50',874.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 (10798,7,7,'2019-08-21 15:10:50',875.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 (10799,7,7,'2019-08-21 15:10:50',875.808000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10800,7,7,'2019-08-21 15:10:50',876.773000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10801,7,7,'2019-08-21 15:10:50',877.639000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10802,7,7,'2019-08-21 15:10:50',878.555000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10803,7,7,'2019-08-21 15:10:50',879.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 (10804,7,7,'2019-08-21 15:10:50',879.743000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10805,7,7,'2019-08-21 15:10:50',880.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 (10806,7,7,'2019-08-21 15:10:50',881.019000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10807,7,7,'2019-08-21 15:10:50',881.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 (10808,7,7,'2019-08-21 15:10:50',881.968000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10809,7,7,'2019-08-21 15:10:50',882.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 (10810,7,7,'2019-08-21 15:10:50',883.615000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10811,7,7,'2019-08-21 15:10:50',883.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 (10812,7,7,'2019-08-21 15:10:50',884.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 (10813,7,7,'2019-08-21 15:10:50',885.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 (10814,7,7,'2019-08-21 15:10:50',886.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 (10815,7,7,'2019-08-21 15:10:50',886.477000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10816,7,7,'2019-08-21 15:10:50',886.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 (10817,7,7,'2019-08-21 15:10:50',887.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 (10818,7,7,'2019-08-21 15:10:50',888.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 (10819,7,7,'2019-08-21 15:10:50',889.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 (10820,7,7,'2019-08-21 15:10:50',889.692000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10821,7,7,'2019-08-21 15:10:50',890.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 (10822,7,7,'2019-08-21 15:10:50',890.897000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10823,7,7,'2019-08-21 15:10:50',891.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 (10824,7,7,'2019-08-21 15:10:50',892.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 (10825,7,7,'2019-08-21 15:10:50',904.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 (10826,7,7,'2019-08-21 15:10:50',936.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 (10827,7,7,'2019-08-21 15:10:50',937.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 (10828,7,7,'2019-08-21 15:10:50',938.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 (10829,7,7,'2019-08-21 15:10:50',939.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 (10830,7,7,'2019-08-21 15:10:50',939.742000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10831,7,7,'2019-08-21 15:10:50',940.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 (10832,7,7,'2019-08-21 15:10:50',940.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 (10833,7,7,'2019-08-21 15:10:50',941.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 (10834,7,7,'2019-08-21 15:10:50',941.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 (10835,7,7,'2019-08-21 15:10:50',942.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 (10836,7,7,'2019-08-21 15:10:50',942.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 (10837,7,7,'2019-08-21 15:10:50',943.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 (10838,7,7,'2019-08-21 15:10:50',944.094000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10839,7,7,'2019-08-21 15:10:50',944.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 (10840,7,7,'2019-08-21 15:10:50',945.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 (10841,7,7,'2019-08-21 15:10:50',946.434000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10842,7,7,'2019-08-21 15:10:50',947.383000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10843,7,7,'2019-08-21 15:10:50',947.717000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10844,7,7,'2019-08-21 15:10:50',948.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 (10845,7,7,'2019-08-21 15:10:50',949.230000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10846,7,7,'2019-08-21 15:10:50',950.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 (10847,7,7,'2019-08-21 15:10:50',951.012000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10848,7,7,'2019-08-21 15:10:50',951.811000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10849,7,7,'2019-08-21 15:10:50',952.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 (10850,7,7,'2019-08-21 15:10:50',952.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 (10851,7,7,'2019-08-21 15:10:50',953.575000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10852,7,7,'2019-08-21 15:10:50',954.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 (10853,7,7,'2019-08-21 15:10:50',954.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 (10854,7,7,'2019-08-21 15:10:50',955.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 (10855,7,7,'2019-08-21 15:10:50',956.289000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10856,7,7,'2019-08-21 15:10:50',956.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 (10857,7,7,'2019-08-21 15:10:50',957.172000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10858,7,7,'2019-08-21 15:10:50',958.138000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10859,7,7,'2019-08-21 15:10:50',959.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 (10860,7,7,'2019-08-21 15:10:50',959.355000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10861,7,7,'2019-08-21 15:10:50',959.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 (10862,7,7,'2019-08-21 15:10:50',960.784000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10863,7,7,'2019-08-21 15:10:50',961.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 (10864,7,7,'2019-08-21 15:10:50',961.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 (10865,7,7,'2019-08-21 15:10:50',962.549000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10866,7,7,'2019-08-21 15:10:50',963.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 (10867,7,7,'2019-08-21 15:10:50',963.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 (10868,7,7,'2019-08-21 15:10:50',964.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 (10869,7,7,'2019-08-21 15:10:50',965.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 (10870,7,7,'2019-08-21 15:10:50',965.544000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10871,7,7,'2019-08-21 15:10:50',966.096000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10872,7,7,'2019-08-21 15:10:50',967.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 (10873,7,7,'2019-08-21 15:10:50',967.977000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10874,7,7,'2019-08-21 15:10:50',968.926000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10875,7,7,'2019-08-21 15:10:50',969.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 (10876,7,7,'2019-08-21 15:10:50',969.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 (10877,7,7,'2019-08-21 15:10:50',970.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 (10878,7,7,'2019-08-21 15:10:50',970.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 (10879,7,7,'2019-08-21 15:10:50',971.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 (10880,7,7,'2019-08-21 15:10:50',972.339000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10881,7,7,'2019-08-21 15:10:50',973.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 (10882,7,7,'2019-08-21 15:10:50',974.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 (10883,7,7,'2019-08-21 15:10:50',974.936000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10884,7,7,'2019-08-21 15:10:50',975.885000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10885,7,7,'2019-08-21 15:10:50',976.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 (10886,7,7,'2019-08-21 15:10:50',977.699000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10887,7,7,'2019-08-21 15:10:50',978.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 (10888,7,7,'2019-08-21 15:10:50',978.615000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10889,7,7,'2019-08-21 15:10:50',978.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 (10890,7,7,'2019-08-21 15:10:50',979.580000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10891,7,7,'2019-08-21 15:10:50',980.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 (10892,7,7,'2019-08-21 15:10:50',981.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 (10893,7,7,'2019-08-21 15:10:50',982.311000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10894,7,7,'2019-08-21 15:10:50',983.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 (10895,7,7,'2019-08-21 15:10:50',983.592000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10896,7,7,'2019-08-21 15:10:50',984.126000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10897,7,7,'2019-08-21 15:10:50',984.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 (10898,7,7,'2019-08-21 15:10:50',985.024000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10899,7,7,'2019-08-21 15:10:50',985.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 (10900,7,7,'2019-08-21 15:10:50',986.723000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10901,7,7,'2019-08-21 15:10:50',987.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 (10902,7,7,'2019-08-21 15:10:50',987.505000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10903,7,7,'2019-08-21 15:10:50',988.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 (10904,7,7,'2019-08-21 15:10:50',988.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 (10905,7,7,'2019-08-21 15:10:50',989.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 (10906,7,7,'2019-08-21 15:10:50',990.119000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10907,7,7,'2019-08-21 15:10:50',990.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 (10908,7,7,'2019-08-21 15:10:50',990.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 (10909,7,7,'2019-08-21 15:10:50',991.784000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10910,7,7,'2019-08-21 15:10:50',992.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 (10911,7,7,'2019-08-21 15:10:50',992.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 (10912,7,7,'2019-08-21 15:10:50',993.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 (10913,7,7,'2019-08-21 15:10:50',994.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 (10914,7,7,'2019-08-21 15:10:50',995.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 (10915,7,7,'2019-08-21 15:10:50',996.029000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10916,7,7,'2019-08-21 15:10:50',996.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 (10917,7,7,'2019-08-21 15:10:50',996.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 (10918,7,7,'2019-08-21 15:10:50',997.744000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10919,7,7,'2019-08-21 15:10:50',998.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 (10920,7,7,'2019-08-21 15:10:50',998.945000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10921,7,7,'2019-08-21 15:10:50',999.608000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10922,7,7,'2019-08-21 15:10:50',1000.441000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10923,7,7,'2019-08-21 15:10:50',1001.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 (10924,7,7,'2019-08-21 15:10:50',1001.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 (10925,7,7,'2019-08-21 15:10:50',1002.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 (10926,7,7,'2019-08-21 15:10:50',1002.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 (10927,7,7,'2019-08-21 15:10:50',1002.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 (10928,7,7,'2019-08-21 15:10:50',1003.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 (10929,7,7,'2019-08-21 15:10:50',1004.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 (10930,7,7,'2019-08-21 15:10:50',1005.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 (10931,7,7,'2019-08-21 15:10:50',1006.451000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10932,7,7,'2019-08-21 15:10:50',1007.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 (10933,7,7,'2019-08-21 15:10:50',1007.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 (10934,7,7,'2019-08-21 15:10:50',1008.066000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10935,7,7,'2019-08-21 15:10:50',1009.049000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10936,7,7,'2019-08-21 15:10:50',1009.383000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10937,7,7,'2019-08-21 15:10:50',1009.914000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10938,7,7,'2019-08-21 15:10:50',1010.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 (10939,7,7,'2019-08-21 15:10:50',1011.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 (10940,7,7,'2019-08-21 15:10:50',1011.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 (10941,7,7,'2019-08-21 15:10:50',1012.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 (10942,7,7,'2019-08-21 15:10:50',1013.460000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10943,7,7,'2019-08-21 15:10:50',1014.409000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10944,7,7,'2019-08-21 15:10:50',1015.225000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10945,7,7,'2019-08-21 15:10:50',1015.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 (10946,7,7,'2019-08-21 15:10:50',1016.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 (10947,7,7,'2019-08-21 15:10:50',1017.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 (10948,7,7,'2019-08-21 15:10:50',1018.155000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10949,7,7,'2019-08-21 15:10:50',1018.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 (10950,7,7,'2019-08-21 15:10:50',1018.987000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10951,7,7,'2019-08-21 15:10:50',1019.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 (10952,7,7,'2019-08-21 15:10:50',1020.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 (10953,7,7,'2019-08-21 15:10:50',1021.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 (10954,7,7,'2019-08-21 15:10:50',1021.668000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10955,7,7,'2019-08-21 15:10:50',1022.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 (10956,7,7,'2019-08-21 15:10:50',1023.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 (10957,7,7,'2019-08-21 15:10:50',1023.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 (10958,7,7,'2019-08-21 15:10:50',1024.115000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10959,7,7,'2019-08-21 15:10:50',1024.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 (10960,7,7,'2019-08-21 15:10:50',1025.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 (10961,7,7,'2019-08-21 15:10:50',1025.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 (10962,7,7,'2019-08-21 15:10:50',1026.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 (10963,7,7,'2019-08-21 15:10:50',1027.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 (10964,7,7,'2019-08-21 15:10:50',1028.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 (10965,7,7,'2019-08-21 15:10:50',1028.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 (10966,7,7,'2019-08-21 15:10:50',1029.144000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10967,7,7,'2019-08-21 15:10:50',1029.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 (10968,7,7,'2019-08-21 15:10:50',1030.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 (10969,7,7,'2019-08-21 15:10:50',1031.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 (10970,7,7,'2019-08-21 15:10:50',1031.924000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10971,7,7,'2019-08-21 15:10:50',1032.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 (10972,7,7,'2019-08-21 15:10:50',1033.085000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10973,7,7,'2019-08-21 15:10:50',1033.555000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10974,7,7,'2019-08-21 15:10:50',1034.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 (10975,7,7,'2019-08-21 15:10:50',1034.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 (10976,7,7,'2019-08-21 15:10:50',1035.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 (10977,7,7,'2019-08-21 15:10:50',1036.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 (10978,7,7,'2019-08-21 15:10:50',1037.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 (10979,7,7,'2019-08-21 15:10:50',1038.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 (10980,7,7,'2019-08-21 15:10:50',1038.505000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10981,7,7,'2019-08-21 15:10:50',1039.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 (10982,7,7,'2019-08-21 15:10:50',1040.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 (10983,7,7,'2019-08-21 15:10:50',1041.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 (10984,7,7,'2019-08-21 15:10:50',1041.332000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10985,7,7,'2019-08-21 15:10:50',1041.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 (10986,7,7,'2019-08-21 15:10:50',1042.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 (10987,7,7,'2019-08-21 15:10:50',1043.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 (10988,7,7,'2019-08-21 15:10:50',1044.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 (10989,7,7,'2019-08-21 15:10:50',1044.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 (10990,7,7,'2019-08-21 15:10:50',1045.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 (10991,7,7,'2019-08-21 15:10:50',1045.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 (10992,7,7,'2019-08-21 15:10:50',1046.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 (10993,7,7,'2019-08-21 15:10:50',1047.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 (10994,7,7,'2019-08-21 15:10:50',1047.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 (10995,7,7,'2019-08-21 15:10:50',1048.357000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10996,7,7,'2019-08-21 15:10:50',1048.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 (10997,7,7,'2019-08-21 15:10:50',1049.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 (10998,7,7,'2019-08-21 15:10:50',1050.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 (10999,7,7,'2019-08-21 15:10:50',1050.637000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11000,7,7,'2019-08-21 15:10:50',1051.535000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11001,7,7,'2019-08-21 15:10:50',1052.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 (11002,7,7,'2019-08-21 15:10:50',1053.383000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11003,7,7,'2019-08-21 15:10:50',1053.656000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11004,7,7,'2019-08-21 15:10:50',1054.249000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11005,7,7,'2019-08-21 15:10:50',1055.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 (11006,7,7,'2019-08-21 15:10:50',1056.047000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11007,7,7,'2019-08-21 15:10:50',1056.829000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11008,7,7,'2019-08-21 15:10:50',1057.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 (11009,7,7,'2019-08-21 15:10:50',1057.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 (11010,7,7,'2019-08-21 15:10:50',1058.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 (11011,7,7,'2019-08-21 15:10:50',1059.219000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11012,7,7,'2019-08-21 15:10:50',1059.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 (11013,7,7,'2019-08-21 15:10:50',1060.459000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11014,7,7,'2019-08-21 15:10:50',1061.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 (11015,7,7,'2019-08-21 15:10:50',1061.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 (11016,7,7,'2019-08-21 15:10:50',1062.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 (11017,7,7,'2019-08-21 15:10:50',1063.089000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11018,7,7,'2019-08-21 15:10:50',1063.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 (11019,7,7,'2019-08-21 15:10:50',1064.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 (11020,7,7,'2019-08-21 15:10:50',1065.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 (11021,7,7,'2019-08-21 15:10:50',1066.636000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11022,7,7,'2019-08-21 15:10:50',1066.961000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11023,7,7,'2019-08-21 15:10:50',1067.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 (11024,7,7,'2019-08-21 15:10:50',1067.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 (11025,7,7,'2019-08-21 15:10:50',1068.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 (11026,7,7,'2019-08-21 15:10:50',1069.183000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11027,7,7,'2019-08-21 15:10:50',1069.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 (11028,7,7,'2019-08-21 15:10:50',1069.998000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11029,7,7,'2019-08-21 15:10:50',1070.881000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11030,7,7,'2019-08-21 15:10:50',1071.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 (11031,7,7,'2019-08-21 15:10:50',1072.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 (11032,7,7,'2019-08-21 15:10:50',1073.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 (11033,7,7,'2019-08-21 15:10:50',1073.744000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11034,7,7,'2019-08-21 15:10:50',1074.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 (11035,7,7,'2019-08-21 15:10:50',1075.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 (11036,7,7,'2019-08-21 15:10:50',1076.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 (11037,7,7,'2019-08-21 15:10:50',1076.409000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11038,7,7,'2019-08-21 15:10:50',1076.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 (11039,7,7,'2019-08-21 15:10:50',1077.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 (11040,7,7,'2019-08-21 15:10:50',1078.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 (11041,7,7,'2019-08-21 15:10:50',1078.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 (11042,7,7,'2019-08-21 15:10:50',1079.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 (11043,7,7,'2019-08-21 15:10:50',1080.471000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11044,7,7,'2019-08-21 15:10:50',1081.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 (11045,7,7,'2019-08-21 15:10:50',1081.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 (11046,7,7,'2019-08-21 15:10:50',1082.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 (11047,7,7,'2019-08-21 15:10:50',1082.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 (11048,7,7,'2019-08-21 15:10:50',1083.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 (11049,7,7,'2019-08-21 15:10:50',1084.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 (11050,7,7,'2019-08-21 15:10:50',1085.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 (11051,7,7,'2019-08-21 15:10:50',1085.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 (11052,7,7,'2019-08-21 15:10:50',1086.114000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11053,7,7,'2019-08-21 15:10:50',1087.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 (11054,7,7,'2019-08-21 15:10:50',1087.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 (11055,7,7,'2019-08-21 15:10:50',1087.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 (11056,7,7,'2019-08-21 15:10:50',1088.694000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11057,7,7,'2019-08-21 15:10:50',1089.461000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11058,7,7,'2019-08-21 15:10:50',1090.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 (11059,7,7,'2019-08-21 15:10:50',1091.159000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11060,7,7,'2019-08-21 15:10:50',1091.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 (11061,7,7,'2019-08-21 15:10:50',1091.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 (11062,7,7,'2019-08-21 15:10:50',1092.907000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11063,7,7,'2019-08-21 15:10:50',1093.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 (11064,7,7,'2019-08-21 15:10:50',1094.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 (11065,7,7,'2019-08-21 15:10:50',1094.722000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11066,7,7,'2019-08-21 15:10:50',1095.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 (11067,7,7,'2019-08-21 15:10:50',1096.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 (11068,7,7,'2019-08-21 15:10:50',1097.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 (11069,7,7,'2019-08-21 15:10:50',1097.688000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11070,7,7,'2019-08-21 15:10:50',1098.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 (11071,7,7,'2019-08-21 15:10:50',1098.697000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11072,7,7,'2019-08-21 15:10:50',1099.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 (11073,7,7,'2019-08-21 15:10:50',1100.249000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11074,7,7,'2019-08-21 15:10:50',1101.131000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11075,7,7,'2019-08-21 15:10:50',1102.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 (11076,7,7,'2019-08-21 15:10:50',1102.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 (11077,7,7,'2019-08-21 15:10:50',1103.046000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11078,7,7,'2019-08-21 15:10:50',1103.961000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11079,7,7,'2019-08-21 15:10:50',1104.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 (11080,7,7,'2019-08-21 15:10:50',1104.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 (11081,7,7,'2019-08-21 15:10:50',1105.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 (11082,7,7,'2019-08-21 15:10:50',1106.592000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11083,7,7,'2019-08-21 15:10:50',1107.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 (11084,7,7,'2019-08-21 15:10:50',1108.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 (11085,7,7,'2019-08-21 15:10:50',1109.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 (11086,7,7,'2019-08-21 15:10:50',1109.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 (11087,7,7,'2019-08-21 15:10:50',1110.121000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11088,7,7,'2019-08-21 15:10:50',1110.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 (11089,7,7,'2019-08-21 15:10:50',1111.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 (11090,7,7,'2019-08-21 15:10:50',1111.836000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11091,7,7,'2019-08-21 15:10:50',1112.602000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11092,7,7,'2019-08-21 15:10:50',1113.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 (11093,7,7,'2019-08-21 15:10:50',1114.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 (11094,7,7,'2019-08-21 15:10:50',1114.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 (11095,7,7,'2019-08-21 15:10:50',1115.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 (11096,7,7,'2019-08-21 15:10:50',1116.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 (11097,7,7,'2019-08-21 15:10:50',1116.533000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11098,7,7,'2019-08-21 15:10:50',1117.264000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11099,7,7,'2019-08-21 15:10:50',1118.263000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11100,7,7,'2019-08-21 15:10:50',1119.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 (11101,7,7,'2019-08-21 15:10:50',1119.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 (11102,7,7,'2019-08-21 15:10:50',1119.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 (11103,7,7,'2019-08-21 15:10:50',1120.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 (11104,7,7,'2019-08-21 15:10:50',1121.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 (11105,7,7,'2019-08-21 15:10:50',1122.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 (11106,7,7,'2019-08-21 15:10:50',1122.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 (11107,7,7,'2019-08-21 15:10:50',1122.923000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11108,7,7,'2019-08-21 15:10:50',1123.307000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11109,7,7,'2019-08-21 15:10:50',1124.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 (11110,7,7,'2019-08-21 15:10:50',1124.988000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11111,7,7,'2019-08-21 15:10:50',1125.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 (11112,7,7,'2019-08-21 15:10:50',1126.736000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11113,7,7,'2019-08-21 15:10:50',1127.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 (11114,7,7,'2019-08-21 15:10:50',1127.652000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11115,7,7,'2019-08-21 15:10:50',1128.081000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11116,7,7,'2019-08-21 15:10:50',1128.484000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11117,7,7,'2019-08-21 15:10:50',1128.838000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11118,7,7,'2019-08-21 15:10:50',1129.400000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11119,7,7,'2019-08-21 15:10:50',1130.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 (11120,7,7,'2019-08-21 15:10:50',1131.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 (11121,7,7,'2019-08-21 15:10:50',1132.014000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11122,7,7,'2019-08-21 15:10:50',1132.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 (11123,7,7,'2019-08-21 15:10:50',1133.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 (11124,7,7,'2019-08-21 15:10:50',1133.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 (11125,7,7,'2019-08-21 15:10:50',1134.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 (11126,7,7,'2019-08-21 15:10:50',1135.394000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11127,7,7,'2019-08-21 15:10:50',1136.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 (11128,7,7,'2019-08-21 15:10:50',1137.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 (11129,7,7,'2019-08-21 15:10:50',1137.388000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11130,7,7,'2019-08-21 15:10:50',1138.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 (11131,7,7,'2019-08-21 15:10:50',1138.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 (11132,7,7,'2019-08-21 15:10:50',1139.689000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11133,7,7,'2019-08-21 15:10:50',1139.991000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11134,7,7,'2019-08-21 15:10:50',1140.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 (11135,7,7,'2019-08-21 15:10:50',1141.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 (11136,7,7,'2019-08-21 15:10:50',1141.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 (11137,7,7,'2019-08-21 15:10:50',1142.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 (11138,7,7,'2019-08-21 15:10:50',1142.985000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11139,7,7,'2019-08-21 15:10:50',1143.784000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11140,7,7,'2019-08-21 15:10:50',1144.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 (11141,7,7,'2019-08-21 15:10:50',1144.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 (11142,7,7,'2019-08-21 15:10:50',1145.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 (11143,7,7,'2019-08-21 15:10:50',1146.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 (11144,7,7,'2019-08-21 15:10:50',1146.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 (11145,7,7,'2019-08-21 15:10:50',1147.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 (11146,7,7,'2019-08-21 15:10:50',1148.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 (11147,7,7,'2019-08-21 15:10:50',1149.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 (11148,7,7,'2019-08-21 15:10:50',1150.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 (11149,7,7,'2019-08-21 15:10:50',1150.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 (11150,7,7,'2019-08-21 15:10:50',1151.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 (11151,7,7,'2019-08-21 15:10:50',1152.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 (11152,7,7,'2019-08-21 15:10:50',1152.649000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11153,7,7,'2019-08-21 15:10:50',1153.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 (11154,7,7,'2019-08-21 15:10:50',1153.990000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11155,7,7,'2019-08-21 15:10:50',1154.806000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11156,7,7,'2019-08-21 15:10:50',1155.622000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11157,7,7,'2019-08-21 15:10:50',1156.454000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11158,7,7,'2019-08-21 15:10:50',1156.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 (11159,7,7,'2019-08-21 15:10:50',1157.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 (11160,7,7,'2019-08-21 15:10:50',1157.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 (11161,7,7,'2019-08-21 15:10:50',1158.302000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11162,7,7,'2019-08-21 15:10:50',1159.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 (11163,7,7,'2019-08-21 15:10:50',1159.483000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11164,7,7,'2019-08-21 15:10:50',1160.100000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11165,7,7,'2019-08-21 15:10:50',1161.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 (11166,7,7,'2019-08-21 15:10:50',1161.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 (11167,7,7,'2019-08-21 15:10:50',1162.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 (11168,7,7,'2019-08-21 15:10:50',1162.830000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11169,7,7,'2019-08-21 15:10:50',1163.779000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11170,7,7,'2019-08-21 15:10:50',1164.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 (11171,7,7,'2019-08-21 15:10:50',1165.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 (11172,7,7,'2019-08-21 15:10:50',1166.626000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11173,7,7,'2019-08-21 15:10:50',1167.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 (11174,7,7,'2019-08-21 15:10:50',1167.393000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11175,7,7,'2019-08-21 15:10:50',1168.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 (11176,7,7,'2019-08-21 15:10:50',1168.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 (11177,7,7,'2019-08-21 15:10:50',1169.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 (11178,7,7,'2019-08-21 15:10:50',1169.890000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11179,7,7,'2019-08-21 15:10:50',1170.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 (11180,7,7,'2019-08-21 15:10:50',1171.754000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11181,7,7,'2019-08-21 15:10:50',1172.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 (11182,7,7,'2019-08-21 15:10:50',1173.050000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11183,7,7,'2019-08-21 15:10:50',1173.585000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11184,7,7,'2019-08-21 15:10:50',1173.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 (11185,7,7,'2019-08-21 15:10:50',1174.352000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11186,7,7,'2019-08-21 15:10:50',1175.217000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11187,7,7,'2019-08-21 15:10:50',1176.083000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11188,7,7,'2019-08-21 15:10:50',1177.064000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11189,7,7,'2019-08-21 15:10:50',1177.380000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11190,7,7,'2019-08-21 15:10:50',1177.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 (11191,7,7,'2019-08-21 15:10:50',1178.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 (11192,7,7,'2019-08-21 15:10:50',1178.880000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11193,7,7,'2019-08-21 15:10:50',1179.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 (11194,7,7,'2019-08-21 15:10:50',1180.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 (11195,7,7,'2019-08-21 15:10:50',1180.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 (11196,7,7,'2019-08-21 15:10:50',1181.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 (11197,7,7,'2019-08-21 15:10:50',1182.093000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11198,7,7,'2019-08-21 15:10:50',1182.417000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11199,7,7,'2019-08-21 15:10:50',1183.059000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11200,7,7,'2019-08-21 15:10:50',1184.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 (11201,7,7,'2019-08-21 15:10:50',1184.973000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11202,7,7,'2019-08-21 15:10:50',1185.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 (11203,7,7,'2019-08-21 15:10:50',1186.838000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11204,7,7,'2019-08-21 15:10:50',1187.837000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11205,7,7,'2019-08-21 15:10:50',1188.719000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11206,7,7,'2019-08-21 15:10:50',1189.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 (11207,7,7,'2019-08-21 15:10:50',1189.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 (11208,7,7,'2019-08-21 15:10:50',1190.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 (11209,7,7,'2019-08-21 15:10:50',1190.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 (11210,7,7,'2019-08-21 15:10:50',1191.133000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11211,7,7,'2019-08-21 15:10:50',1191.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 (11212,7,7,'2019-08-21 15:10:50',1192.289000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11213,7,7,'2019-08-21 15:10:50',1192.881000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11214,7,7,'2019-08-21 15:10:50',1193.137000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11215,7,7,'2019-08-21 15:10:50',1193.830000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11216,7,7,'2019-08-21 15:10:50',1194.712000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11217,7,7,'2019-08-21 15:10:50',1195.578000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11218,7,7,'2019-08-21 15:10:50',1196.511000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11219,7,7,'2019-08-21 15:10:50',1197.276000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11220,7,7,'2019-08-21 15:10:50',1198.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 (11221,7,7,'2019-08-21 15:10:50',1199.008000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11222,7,7,'2019-08-21 15:10:50',1199.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 (11223,7,7,'2019-08-21 15:10:50',1199.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 (11224,7,7,'2019-08-21 15:10:50',1200.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 (11225,7,7,'2019-08-21 15:10:50',1200.673000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11226,8,8,'2019-08-21 15:10:59',0.902000,0.000000,NULL,NULL,NULL,NULL,'e-198',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11227,8,8,'2019-08-21 15:10:59',14.387000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11228,8,8,'2019-08-21 15:10:59',15.269000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11229,8,8,'2019-08-21 15:10:59',16.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 (11230,8,8,'2019-08-21 15:10:59',17.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 (11231,8,8,'2019-08-21 15:10:59',17.533000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11232,8,8,'2019-08-21 15:10:59',18.115000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11233,8,8,'2019-08-21 15:10:59',18.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 (11234,8,8,'2019-08-21 15:10:59',18.998000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11235,8,8,'2019-08-21 15:10:59',19.847000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11236,8,8,'2019-08-21 15:10:59',20.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 (11237,8,8,'2019-08-21 15:10:59',20.846000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11238,8,8,'2019-08-21 15:10:59',21.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 (11239,8,8,'2019-08-21 15:10:59',21.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 (11240,8,8,'2019-08-21 15:10:59',22.644000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11241,8,8,'2019-08-21 15:10:59',23.643000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11242,8,8,'2019-08-21 15:10:59',24.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 (11243,8,8,'2019-08-21 15:10:59',25.308000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11244,8,8,'2019-08-21 15:10:59',26.090000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11245,8,8,'2019-08-21 15:10:59',26.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 (11246,8,8,'2019-08-21 15:10:59',27.235000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11247,8,8,'2019-08-21 15:10:59',27.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 (11248,8,8,'2019-08-21 15:10:59',28.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 (11249,8,8,'2019-08-21 15:10:59',28.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 (11250,8,8,'2019-08-21 15:10:59',29.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 (11251,8,8,'2019-08-21 15:10:59',30.252000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11252,8,8,'2019-08-21 15:10:59',31.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 (11253,8,8,'2019-08-21 15:10:59',31.613000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11254,8,8,'2019-08-21 15:10:59',32.000000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11255,8,8,'2019-08-21 15:10:59',32.833000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11256,8,8,'2019-08-21 15:10:59',33.731000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11257,8,8,'2019-08-21 15:10:59',34.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 (11258,8,8,'2019-08-21 15:10:59',34.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 (11259,8,8,'2019-08-21 15:10:59',35.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 (11260,8,8,'2019-08-21 15:10:59',36.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 (11261,8,8,'2019-08-21 15:10:59',36.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 (11262,8,8,'2019-08-21 15:10:59',37.012000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11263,8,8,'2019-08-21 15:10:59',37.944000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11264,8,8,'2019-08-21 15:10:59',38.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 (11265,8,8,'2019-08-21 15:10:59',39.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 (11266,8,8,'2019-08-21 15:10:59',39.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 (11267,8,8,'2019-08-21 15:10:59',40.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 (11268,8,8,'2019-08-21 15:10:59',41.523000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11269,8,8,'2019-08-21 15:10:59',42.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 (11270,8,8,'2019-08-21 15:10:59',42.688000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11271,8,8,'2019-08-21 15:10:59',43.071000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11272,8,8,'2019-08-21 15:10:59',44.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 (11273,8,8,'2019-08-21 15:10:59',44.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 (11274,8,8,'2019-08-21 15:10:59',44.953000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11275,8,8,'2019-08-21 15:10:59',45.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 (11276,8,8,'2019-08-21 15:10:59',46.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 (11277,8,8,'2019-08-21 15:10:59',47.800000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11278,8,8,'2019-08-21 15:10:59',48.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 (11279,8,8,'2019-08-21 15:10:59',48.799000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11280,8,8,'2019-08-21 15:10:59',49.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 (11281,8,8,'2019-08-21 15:10:59',50.414000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11282,8,8,'2019-08-21 15:10:59',50.767000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11283,8,8,'2019-08-21 15:10:59',51.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 (11284,8,8,'2019-08-21 15:10:59',52.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 (11285,8,8,'2019-08-21 15:10:59',52.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 (11286,8,8,'2019-08-21 15:10:59',53.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 (11287,8,8,'2019-08-21 15:10:59',53.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 (11288,8,8,'2019-08-21 15:10:59',54.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 (11289,8,8,'2019-08-21 15:10:59',55.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 (11290,8,8,'2019-08-21 15:10:59',55.658000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11291,8,8,'2019-08-21 15:10:59',56.440000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11292,8,8,'2019-08-21 15:10:59',57.272000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11293,8,8,'2019-08-21 15:10:59',57.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 (11294,8,8,'2019-08-21 15:10:59',58.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 (11295,8,8,'2019-08-21 15:10:59',58.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 (11296,8,8,'2019-08-21 15:10:59',58.971000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11297,8,8,'2019-08-21 15:10:59',59.903000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11298,8,8,'2019-08-21 15:10:59',60.836000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11299,8,8,'2019-08-21 15:10:59',61.618000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11300,8,8,'2019-08-21 15:10:59',62.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 (11301,8,8,'2019-08-21 15:10:59',62.809000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11302,8,8,'2019-08-21 15:10:59',63.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 (11303,8,8,'2019-08-21 15:10:59',63.636000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11304,8,8,'2019-08-21 15:10:59',64.148000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11305,8,8,'2019-08-21 15:10:59',65.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 (11306,8,8,'2019-08-21 15:10:59',65.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 (11307,8,8,'2019-08-21 15:10:59',66.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 (11308,8,8,'2019-08-21 15:10:59',67.661000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11309,8,8,'2019-08-21 15:10:59',67.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 (11310,8,8,'2019-08-21 15:10:59',68.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 (11311,8,8,'2019-08-21 15:10:59',69.426000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11312,8,8,'2019-08-21 15:10:59',70.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 (11313,8,8,'2019-08-21 15:10:59',70.626000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11314,8,8,'2019-08-21 15:10:59',71.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 (11315,8,8,'2019-08-21 15:10:59',71.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 (11316,8,8,'2019-08-21 15:10:59',72.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 (11317,8,8,'2019-08-21 15:10:59',73.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 (11318,8,8,'2019-08-21 15:10:59',74.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 (11319,8,8,'2019-08-21 15:10:59',75.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 (11320,8,8,'2019-08-21 15:10:59',75.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 (11321,8,8,'2019-08-21 15:10:59',76.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 (11322,8,8,'2019-08-21 15:10:59',76.637000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11323,8,8,'2019-08-21 15:10:59',77.234000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11324,8,8,'2019-08-21 15:10:59',77.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 (11325,8,8,'2019-08-21 15:10:59',78.217000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11326,8,8,'2019-08-21 15:10:59',79.016000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11327,8,8,'2019-08-21 15:10:59',79.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 (11328,8,8,'2019-08-21 15:10:59',80.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 (11329,8,8,'2019-08-21 15:10:59',81.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 (11330,8,8,'2019-08-21 15:10:59',81.696000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11331,8,8,'2019-08-21 15:10:59',82.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 (11332,8,8,'2019-08-21 15:10:59',83.294000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11333,8,8,'2019-08-21 15:10:59',83.637000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11334,8,8,'2019-08-21 15:10:59',84.061000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11335,8,8,'2019-08-21 15:10:59',84.959000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11336,8,8,'2019-08-21 15:10:59',85.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 (11337,8,8,'2019-08-21 15:10:59',85.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 (11338,8,8,'2019-08-21 15:10:59',86.808000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11339,8,8,'2019-08-21 15:10:59',87.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 (11340,8,8,'2019-08-21 15:10:59',88.438000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11341,8,8,'2019-08-21 15:10:59',89.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 (11342,8,8,'2019-08-21 15:10:59',90.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 (11343,8,8,'2019-08-21 15:10:59',90.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 (11344,8,8,'2019-08-21 15:10:59',91.219000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11345,8,8,'2019-08-21 15:10:59',91.533000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11346,8,8,'2019-08-21 15:10:59',92.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 (11347,8,8,'2019-08-21 15:10:59',92.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 (11348,8,8,'2019-08-21 15:10:59',93.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 (11349,8,8,'2019-08-21 15:10:59',93.750000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11350,8,8,'2019-08-21 15:10:59',94.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 (11351,8,8,'2019-08-21 15:10:59',94.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 (11352,8,8,'2019-08-21 15:10:59',95.664000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11353,8,8,'2019-08-21 15:10:59',96.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 (11354,8,8,'2019-08-21 15:10:59',97.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 (11355,8,8,'2019-08-21 15:10:59',98.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 (11356,8,8,'2019-08-21 15:10:59',99.294000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11357,8,8,'2019-08-21 15:10:59',99.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 (11358,8,8,'2019-08-21 15:10:59',100.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 (11359,8,8,'2019-08-21 15:10:59',101.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 (11360,8,8,'2019-08-21 15:10:59',101.808000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11361,8,8,'2019-08-21 15:10:59',102.144000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11362,8,8,'2019-08-21 15:10:59',102.790000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11363,8,8,'2019-08-21 15:10:59',103.688000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11364,8,8,'2019-08-21 15:10:59',104.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 (11365,8,8,'2019-08-21 15:10:59',104.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 (11366,8,8,'2019-08-21 15:10:59',105.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 (11367,8,8,'2019-08-21 15:10:59',106.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 (11368,8,8,'2019-08-21 15:10:59',107.235000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11369,8,8,'2019-08-21 15:10:59',107.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 (11370,8,8,'2019-08-21 15:10:59',108.001000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11371,8,8,'2019-08-21 15:10:59',108.933000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11372,8,8,'2019-08-21 15:10:59',109.782000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11373,8,8,'2019-08-21 15:10:59',110.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 (11374,8,8,'2019-08-21 15:10:59',110.781000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11375,8,8,'2019-08-21 15:10:59',111.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 (11376,8,8,'2019-08-21 15:10:59',111.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 (11377,8,8,'2019-08-21 15:10:59',112.329000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11378,8,8,'2019-08-21 15:10:59',113.312000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11379,8,8,'2019-08-21 15:10:59',114.228000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11380,8,8,'2019-08-21 15:10:59',114.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 (11381,8,8,'2019-08-21 15:10:59',115.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 (11382,8,8,'2019-08-21 15:10:59',116.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 (11383,8,8,'2019-08-21 15:10:59',117.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 (11384,8,8,'2019-08-21 15:10:59',117.505000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11385,8,8,'2019-08-21 15:10:59',118.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 (11386,8,8,'2019-08-21 15:10:59',119.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 (11387,8,8,'2019-08-21 15:10:59',120.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 (11388,8,8,'2019-08-21 15:10:59',120.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 (11389,8,8,'2019-08-21 15:10:59',121.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 (11390,8,8,'2019-08-21 15:10:59',121.652000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11391,8,8,'2019-08-21 15:10:59',122.435000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11392,8,8,'2019-08-21 15:10:59',122.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 (11393,8,8,'2019-08-21 15:10:59',123.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 (11394,8,8,'2019-08-21 15:10:59',124.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 (11395,8,8,'2019-08-21 15:10:59',125.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 (11396,8,8,'2019-08-21 15:10:59',125.433000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11397,8,8,'2019-08-21 15:10:59',125.998000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11398,8,8,'2019-08-21 15:10:59',126.270000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11399,8,8,'2019-08-21 15:10:59',126.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 (11400,8,8,'2019-08-21 15:10:59',127.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 (11401,8,8,'2019-08-21 15:10:59',128.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 (11402,8,8,'2019-08-21 15:10:59',129.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 (11403,8,8,'2019-08-21 15:10:59',130.526000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11404,8,8,'2019-08-21 15:10:59',131.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 (11405,8,8,'2019-08-21 15:10:59',131.665000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11406,8,8,'2019-08-21 15:10:59',132.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 (11407,8,8,'2019-08-21 15:10:59',133.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 (11408,8,8,'2019-08-21 15:10:59',133.906000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11409,8,8,'2019-08-21 15:10:59',134.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 (11410,8,8,'2019-08-21 15:10:59',135.074000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11411,8,8,'2019-08-21 15:10:59',135.620000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11412,8,8,'2019-08-21 15:10:59',136.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 (11413,8,8,'2019-08-21 15:10:59',136.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 (11414,8,8,'2019-08-21 15:10:59',136.729000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11415,8,8,'2019-08-21 15:10:59',137.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 (11416,8,8,'2019-08-21 15:10:59',138.135000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11417,8,8,'2019-08-21 15:10:59',138.900000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11418,8,8,'2019-08-21 15:10:59',139.800000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11419,8,8,'2019-08-21 15:10:59',140.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 (11420,8,8,'2019-08-21 15:10:59',141.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 (11421,8,8,'2019-08-21 15:10:59',142.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 (11422,8,8,'2019-08-21 15:10:59',142.921000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11423,8,8,'2019-08-21 15:10:59',143.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 (11424,8,8,'2019-08-21 15:10:59',144.261000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11425,8,8,'2019-08-21 15:10:59',145.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 (11426,8,8,'2019-08-21 15:10:59',145.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 (11427,8,8,'2019-08-21 15:10:59',146.093000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11428,8,8,'2019-08-21 15:10:59',146.875000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11429,8,8,'2019-08-21 15:10:59',147.657000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11430,8,8,'2019-08-21 15:10:59',147.944000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11431,8,8,'2019-08-21 15:10:59',148.474000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11432,8,8,'2019-08-21 15:10:59',149.405000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11433,8,8,'2019-08-21 15:10:59',150.222000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11434,8,8,'2019-08-21 15:10:59',150.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 (11435,8,8,'2019-08-21 15:10:59',150.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 (11436,8,8,'2019-08-21 15:10:59',151.373000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11437,8,8,'2019-08-21 15:10:59',151.886000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11438,8,8,'2019-08-21 15:10:59',152.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 (11439,8,8,'2019-08-21 15:10:59',152.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 (11440,8,8,'2019-08-21 15:10:59',153.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 (11441,8,8,'2019-08-21 15:10:59',154.417000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11442,8,8,'2019-08-21 15:10:59',155.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 (11443,8,8,'2019-08-21 15:10:59',156.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 (11444,8,8,'2019-08-21 15:10:59',156.831000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11445,8,8,'2019-08-21 15:10:59',157.143000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11446,8,8,'2019-08-21 15:10:59',157.763000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11447,8,8,'2019-08-21 15:10:59',158.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 (11448,8,8,'2019-08-21 15:10:59',159.328000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11449,8,8,'2019-08-21 15:10:59',160.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 (11450,8,8,'2019-08-21 15:10:59',160.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 (11451,8,8,'2019-08-21 15:10:59',161.176000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11452,8,8,'2019-08-21 15:10:59',162.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 (11453,8,8,'2019-08-21 15:10:59',162.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 (11454,8,8,'2019-08-21 15:10:59',163.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 (11455,8,8,'2019-08-21 15:10:59',164.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 (11456,8,8,'2019-08-21 15:10:59',164.822000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11457,8,8,'2019-08-21 15:10:59',165.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 (11458,8,8,'2019-08-21 15:10:59',165.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 (11459,8,8,'2019-08-21 15:10:59',166.437000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11460,8,8,'2019-08-21 15:10:59',167.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 (11461,8,8,'2019-08-21 15:10:59',167.723000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11462,8,8,'2019-08-21 15:10:59',168.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 (11463,8,8,'2019-08-21 15:10:59',169.284000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11464,8,8,'2019-08-21 15:10:59',170.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 (11465,8,8,'2019-08-21 15:10:59',171.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 (11466,8,8,'2019-08-21 15:10:59',171.565000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11467,8,8,'2019-08-21 15:10:59',172.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 (11468,8,8,'2019-08-21 15:10:59',172.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 (11469,8,8,'2019-08-21 15:10:59',172.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 (11470,8,8,'2019-08-21 15:10:59',173.779000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11471,8,8,'2019-08-21 15:10:59',174.744000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11472,8,8,'2019-08-21 15:10:59',175.511000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11473,8,8,'2019-08-21 15:10:59',176.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 (11474,8,8,'2019-08-21 15:10:59',176.648000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11475,8,8,'2019-08-21 15:10:59',177.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 (11476,8,8,'2019-08-21 15:10:59',177.436000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11477,8,8,'2019-08-21 15:10:59',178.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 (11478,8,8,'2019-08-21 15:10:59',178.990000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11479,8,8,'2019-08-21 15:10:59',179.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 (11480,8,8,'2019-08-21 15:10:59',180.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 (11481,8,8,'2019-08-21 15:10:59',181.604000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11482,8,8,'2019-08-21 15:10:59',181.923000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11483,8,8,'2019-08-21 15:10:59',182.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 (11484,8,8,'2019-08-21 15:10:59',183.418000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11485,8,8,'2019-08-21 15:10:59',183.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 (11486,8,8,'2019-08-21 15:10:59',184.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 (11487,8,8,'2019-08-21 15:10:59',185.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 (11488,8,8,'2019-08-21 15:10:59',185.635000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11489,8,8,'2019-08-21 15:10:59',186.165000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11490,8,8,'2019-08-21 15:10:59',186.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 (11491,8,8,'2019-08-21 15:10:59',187.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 (11492,8,8,'2019-08-21 15:10:59',188.779000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11493,8,8,'2019-08-21 15:10:59',189.135000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11494,8,8,'2019-08-21 15:10:59',189.695000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11495,8,8,'2019-08-21 15:10:59',190.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 (11496,8,8,'2019-08-21 15:10:59',190.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 (11497,8,8,'2019-08-21 15:10:59',191.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 (11498,8,8,'2019-08-21 15:10:59',192.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 (11499,8,8,'2019-08-21 15:10:59',192.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 (11500,8,8,'2019-08-21 15:10:59',193.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 (11501,8,8,'2019-08-21 15:10:59',194.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 (11502,8,8,'2019-08-21 15:10:59',194.573000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11503,8,8,'2019-08-21 15:10:59',194.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 (11504,8,8,'2019-08-21 15:10:59',195.572000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11505,8,8,'2019-08-21 15:10:59',196.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 (11506,8,8,'2019-08-21 15:10:59',197.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 (11507,8,8,'2019-08-21 15:10:59',198.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 (11508,8,8,'2019-08-21 15:10:59',198.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 (11509,8,8,'2019-08-21 15:10:59',199.068000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11510,8,8,'2019-08-21 15:10:59',199.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 (11511,8,8,'2019-08-21 15:10:59',200.249000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11512,8,8,'2019-08-21 15:10:59',200.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 (11513,8,8,'2019-08-21 15:10:59',201.648000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11514,8,8,'2019-08-21 15:10:59',202.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 (11515,8,8,'2019-08-21 15:10:59',203.547000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11516,8,8,'2019-08-21 15:10:59',203.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 (11517,8,8,'2019-08-21 15:10:59',204.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 (11518,8,8,'2019-08-21 15:10:59',205.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 (11519,8,8,'2019-08-21 15:10:59',205.807000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11520,8,8,'2019-08-21 15:10:59',206.493000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11521,8,8,'2019-08-21 15:10:59',207.426000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11522,8,8,'2019-08-21 15:10:59',208.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 (11523,8,8,'2019-08-21 15:10:59',209.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 (11524,8,8,'2019-08-21 15:10:59',209.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 (11525,8,8,'2019-08-21 15:10:59',210.305000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11526,8,8,'2019-08-21 15:10:59',210.788000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11527,8,8,'2019-08-21 15:10:59',211.555000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11528,8,8,'2019-08-21 15:10:59',212.387000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11529,8,8,'2019-08-21 15:10:59',212.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 (11530,8,8,'2019-08-21 15:10:59',213.286000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11531,8,8,'2019-08-21 15:10:59',214.251000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11532,8,8,'2019-08-21 15:10:59',214.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 (11533,8,8,'2019-08-21 15:10:59',215.233000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11534,8,8,'2019-08-21 15:10:59',216.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 (11535,8,8,'2019-08-21 15:10:59',216.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 (11536,8,8,'2019-08-21 15:10:59',217.831000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11537,8,8,'2019-08-21 15:10:59',218.663000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11538,8,8,'2019-08-21 15:10:59',218.979000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11539,8,8,'2019-08-21 15:10:59',219.662000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11540,8,8,'2019-08-21 15:10:59',220.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 (11541,8,8,'2019-08-21 15:10:59',221.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 (11542,8,8,'2019-08-21 15:10:59',221.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 (11543,8,8,'2019-08-21 15:10:59',222.176000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11544,8,8,'2019-08-21 15:10:59',223.108000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11545,8,8,'2019-08-21 15:10:59',223.427000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11546,8,8,'2019-08-21 15:10:59',224.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 (11547,8,8,'2019-08-21 15:10:59',224.807000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11548,8,8,'2019-08-21 15:10:59',225.171000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11549,8,8,'2019-08-21 15:10:59',225.639000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11550,8,8,'2019-08-21 15:10:59',226.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 (11551,8,8,'2019-08-21 15:10:59',227.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 (11552,8,8,'2019-08-21 15:10:59',228.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 (11553,8,8,'2019-08-21 15:10:59',229.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 (11554,8,8,'2019-08-21 15:10:59',229.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 (11555,8,8,'2019-08-21 15:10:59',229.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 (11556,8,8,'2019-08-21 15:10:59',230.800000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11557,8,8,'2019-08-21 15:10:59',231.649000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11558,8,8,'2019-08-21 15:10:59',232.665000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11559,8,8,'2019-08-21 15:10:59',233.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 (11560,8,8,'2019-08-21 15:10:59',233.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 (11561,8,8,'2019-08-21 15:10:59',234.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 (11562,8,8,'2019-08-21 15:10:59',234.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 (11563,8,8,'2019-08-21 15:10:59',235.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 (11564,8,8,'2019-08-21 15:10:59',236.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 (11565,8,8,'2019-08-21 15:10:59',236.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 (11566,8,8,'2019-08-21 15:10:59',237.076000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11567,8,8,'2019-08-21 15:10:59',238.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 (11568,8,8,'2019-08-21 15:10:59',239.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 (11569,8,8,'2019-08-21 15:10:59',239.382000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11570,8,8,'2019-08-21 15:10:59',239.990000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11571,8,8,'2019-08-21 15:10:59',240.839000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11572,8,8,'2019-08-21 15:10:59',241.197000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11573,8,8,'2019-08-21 15:10:59',241.638000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11574,8,8,'2019-08-21 15:10:59',242.421000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11575,8,8,'2019-08-21 15:10:59',243.203000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11576,8,8,'2019-08-21 15:10:59',244.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 (11577,8,8,'2019-08-21 15:10:59',245.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 (11578,8,8,'2019-08-21 15:10:59',245.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 (11579,8,8,'2019-08-21 15:10:59',245.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 (11580,8,8,'2019-08-21 15:10:59',246.311000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11581,8,8,'2019-08-21 15:10:59',246.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 (11582,8,8,'2019-08-21 15:10:59',247.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 (11583,8,8,'2019-08-21 15:10:59',248.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 (11584,8,8,'2019-08-21 15:10:59',249.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 (11585,8,8,'2019-08-21 15:10:59',250.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 (11586,8,8,'2019-08-21 15:10:59',250.495000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11587,8,8,'2019-08-21 15:10:59',251.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 (11588,8,8,'2019-08-21 15:10:59',252.343000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11589,8,8,'2019-08-21 15:10:59',253.226000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11590,8,8,'2019-08-21 15:10:59',254.191000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11591,8,8,'2019-08-21 15:10:59',255.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 (11592,8,8,'2019-08-21 15:10:59',255.579000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11593,8,8,'2019-08-21 15:10:59',256.006000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11594,8,8,'2019-08-21 15:10:59',256.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 (11595,8,8,'2019-08-21 15:10:59',256.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 (11596,8,8,'2019-08-21 15:10:59',257.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 (11597,8,8,'2019-08-21 15:10:59',257.737000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11598,8,8,'2019-08-21 15:10:59',258.569000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11599,8,8,'2019-08-21 15:10:59',259.502000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11600,8,8,'2019-08-21 15:10:59',260.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 (11601,8,8,'2019-08-21 15:10:59',260.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 (11602,8,8,'2019-08-21 15:10:59',261.267000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11603,8,8,'2019-08-21 15:10:59',262.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 (11604,8,8,'2019-08-21 15:10:59',262.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 (11605,8,8,'2019-08-21 15:10:59',263.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 (11606,8,8,'2019-08-21 15:10:59',263.831000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11607,8,8,'2019-08-21 15:10:59',264.630000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11608,8,8,'2019-08-21 15:10:59',264.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 (11609,8,8,'2019-08-21 15:10:59',265.579000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11610,8,8,'2019-08-21 15:10:59',266.577000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11611,8,8,'2019-08-21 15:10:59',267.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 (11612,8,8,'2019-08-21 15:10:59',268.343000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11613,8,8,'2019-08-21 15:10:59',269.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 (11614,8,8,'2019-08-21 15:10:59',270.323000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11615,8,8,'2019-08-21 15:10:59',270.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 (11616,8,8,'2019-08-21 15:10:59',271.322000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11617,8,8,'2019-08-21 15:10:59',272.255000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11618,8,8,'2019-08-21 15:10:59',272.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 (11619,8,8,'2019-08-21 15:10:59',273.153000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11620,8,8,'2019-08-21 15:10:59',274.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 (11621,8,8,'2019-08-21 15:10:59',274.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 (11622,8,8,'2019-08-21 15:10:59',275.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 (11623,8,8,'2019-08-21 15:10:59',275.367000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11624,8,8,'2019-08-21 15:10:59',275.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 (11625,8,8,'2019-08-21 15:10:59',276.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 (11626,8,8,'2019-08-21 15:10:59',277.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 (11627,8,8,'2019-08-21 15:10:59',289.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 (11628,8,8,'2019-08-21 15:10:59',289.902000,0.000000,NULL,NULL,NULL,NULL,'e-198',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11629,8,8,'2019-08-21 15:10:59',306.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 (11630,8,8,'2019-08-21 15:10:59',307.817000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11631,8,8,'2019-08-21 15:10:59',308.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 (11632,8,8,'2019-08-21 15:10:59',309.615000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11633,8,8,'2019-08-21 15:10:59',309.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 (11634,8,8,'2019-08-21 15:10:59',310.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 (11635,8,8,'2019-08-21 15:10:59',310.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 (11636,8,8,'2019-08-21 15:10:59',311.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 (11637,8,8,'2019-08-21 15:10:59',312.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 (11638,8,8,'2019-08-21 15:10:59',313.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 (11639,8,8,'2019-08-21 15:10:59',314.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 (11640,8,8,'2019-08-21 15:10:59',315.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 (11641,8,8,'2019-08-21 15:10:59',315.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 (11642,8,8,'2019-08-21 15:10:59',315.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 (11643,8,8,'2019-08-21 15:10:59',316.808000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11644,8,8,'2019-08-21 15:10:59',317.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 (11645,8,8,'2019-08-21 15:10:59',317.739000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11646,8,8,'2019-08-21 15:10:59',318.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 (11647,8,8,'2019-08-21 15:10:59',318.954000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11648,8,8,'2019-08-21 15:10:59',319.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 (11649,8,8,'2019-08-21 15:10:59',320.553000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11650,8,8,'2019-08-21 15:10:59',320.921000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11651,8,8,'2019-08-21 15:10:59',321.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 (11652,8,8,'2019-08-21 15:10:59',322.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 (11653,8,8,'2019-08-21 15:10:59',323.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 (11654,8,8,'2019-08-21 15:10:59',324.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 (11655,8,8,'2019-08-21 15:10:59',324.932000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11656,8,8,'2019-08-21 15:10:59',325.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 (11657,8,8,'2019-08-21 15:10:59',325.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 (11658,8,8,'2019-08-21 15:10:59',326.215000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11659,8,8,'2019-08-21 15:10:59',326.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 (11660,8,8,'2019-08-21 15:10:59',327.612000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11661,8,8,'2019-08-21 15:10:59',328.428000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11662,8,8,'2019-08-21 15:10:59',328.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 (11663,8,8,'2019-08-21 15:10:59',329.327000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11664,8,8,'2019-08-21 15:10:59',330.192000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11665,8,8,'2019-08-21 15:10:59',330.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 (11666,8,8,'2019-08-21 15:10:59',330.975000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11667,8,8,'2019-08-21 15:10:59',331.924000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11668,8,8,'2019-08-21 15:10:59',332.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 (11669,8,8,'2019-08-21 15:10:59',333.639000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11670,8,8,'2019-08-21 15:10:59',334.638000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11671,8,8,'2019-08-21 15:10:59',335.040000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11672,8,8,'2019-08-21 15:10:59',335.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 (11673,8,8,'2019-08-21 15:10:59',336.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 (11674,8,8,'2019-08-21 15:10:59',336.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 (11675,8,8,'2019-08-21 15:10:59',337.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 (11676,8,8,'2019-08-21 15:10:59',338.250000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11677,8,8,'2019-08-21 15:10:59',339.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 (11678,8,8,'2019-08-21 15:10:59',339.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 (11679,8,8,'2019-08-21 15:10:59',340.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 (11680,8,8,'2019-08-21 15:10:59',340.980000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11681,8,8,'2019-08-21 15:10:59',341.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 (11682,8,8,'2019-08-21 15:10:59',342.579000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11683,8,8,'2019-08-21 15:10:59',342.937000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11684,8,8,'2019-08-21 15:10:59',343.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 (11685,8,8,'2019-08-21 15:10:59',344.261000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11686,8,8,'2019-08-21 15:10:59',344.731000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11687,8,8,'2019-08-21 15:10:59',345.126000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11688,8,8,'2019-08-21 15:10:59',345.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 (11689,8,8,'2019-08-21 15:10:59',345.959000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11690,8,8,'2019-08-21 15:10:59',346.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 (11691,8,8,'2019-08-21 15:10:59',347.707000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11692,8,8,'2019-08-21 15:10:59',348.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 (11693,8,8,'2019-08-21 15:10:59',349.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 (11694,8,8,'2019-08-21 15:10:59',349.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 (11695,8,8,'2019-08-21 15:10:59',350.304000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11696,8,8,'2019-08-21 15:10:59',351.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 (11697,8,8,'2019-08-21 15:10:59',351.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 (11698,8,8,'2019-08-21 15:10:59',352.296000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11699,8,8,'2019-08-21 15:10:59',352.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 (11700,8,8,'2019-08-21 15:10:59',353.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 (11701,8,8,'2019-08-21 15:10:59',354.416000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11702,8,8,'2019-08-21 15:10:59',355.232000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11703,8,8,'2019-08-21 15:10:59',356.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 (11704,8,8,'2019-08-21 15:10:59',356.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 (11705,8,8,'2019-08-21 15:10:59',357.047000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11706,8,8,'2019-08-21 15:10:59',357.439000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11707,8,8,'2019-08-21 15:10:59',357.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 (11708,8,8,'2019-08-21 15:10:59',358.661000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11709,8,8,'2019-08-21 15:10:59',359.494000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11710,8,8,'2019-08-21 15:10:59',360.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 (11711,8,8,'2019-08-21 15:10:59',360.868000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11712,8,8,'2019-08-21 15:10:59',361.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 (11713,8,8,'2019-08-21 15:10:59',362.241000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11714,8,8,'2019-08-21 15:10:59',363.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 (11715,8,8,'2019-08-21 15:10:59',364.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 (11716,8,8,'2019-08-21 15:10:59',364.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 (11717,8,8,'2019-08-21 15:10:59',364.921000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11718,8,8,'2019-08-21 15:10:59',365.346000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11719,8,8,'2019-08-21 15:10:59',365.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 (11720,8,8,'2019-08-21 15:10:59',366.152000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11721,8,8,'2019-08-21 15:10:59',366.736000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11722,8,8,'2019-08-21 15:10:59',367.535000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11723,8,8,'2019-08-21 15:10:59',368.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 (11724,8,8,'2019-08-21 15:10:59',369.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 (11725,8,8,'2019-08-21 15:10:59',370.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 (11726,8,8,'2019-08-21 15:10:59',371.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 (11727,8,8,'2019-08-21 15:10:59',371.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 (11728,8,8,'2019-08-21 15:10:59',371.897000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11729,8,8,'2019-08-21 15:10:59',372.335000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11730,8,8,'2019-08-21 15:10:59',372.779000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11731,8,8,'2019-08-21 15:10:59',373.612000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11732,8,8,'2019-08-21 15:10:59',374.577000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11733,8,8,'2019-08-21 15:10:59',375.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 (11734,8,8,'2019-08-21 15:10:59',376.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 (11735,8,8,'2019-08-21 15:10:59',377.357000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11736,8,8,'2019-08-21 15:10:59',378.290000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11737,8,8,'2019-08-21 15:10:59',378.658000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11738,8,8,'2019-08-21 15:10:59',379.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 (11739,8,8,'2019-08-21 15:10:59',379.889000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11740,8,8,'2019-08-21 15:10:59',380.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 (11741,8,8,'2019-08-21 15:10:59',380.754000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11742,8,8,'2019-08-21 15:10:59',381.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 (11743,8,8,'2019-08-21 15:10:59',382.067000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11744,8,8,'2019-08-21 15:10:59',382.568000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11745,8,8,'2019-08-21 15:10:59',383.501000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11746,8,8,'2019-08-21 15:10:59',384.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 (11747,8,8,'2019-08-21 15:10:59',384.729000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11748,8,8,'2019-08-21 15:10:59',385.133000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11749,8,8,'2019-08-21 15:10:59',385.948000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11750,8,8,'2019-08-21 15:10:59',386.848000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11751,8,8,'2019-08-21 15:10:59',387.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 (11752,8,8,'2019-08-21 15:10:59',388.189000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11753,8,8,'2019-08-21 15:10:59',388.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 (11754,8,8,'2019-08-21 15:10:59',389.127000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11755,8,8,'2019-08-21 15:10:59',389.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 (11756,8,8,'2019-08-21 15:10:59',390.677000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11757,8,8,'2019-08-21 15:10:59',391.676000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11758,8,8,'2019-08-21 15:10:59',392.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 (11759,8,8,'2019-08-21 15:10:59',392.959000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11760,8,8,'2019-08-21 15:10:59',393.490000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11761,8,8,'2019-08-21 15:10:59',394.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 (11762,8,8,'2019-08-21 15:10:59',395.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 (11763,8,8,'2019-08-21 15:10:59',396.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 (11764,8,8,'2019-08-21 15:10:59',396.590000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11765,8,8,'2019-08-21 15:10:59',397.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 (11766,8,8,'2019-08-21 15:10:59',397.468000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11767,8,8,'2019-08-21 15:10:59',398.052000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11768,8,8,'2019-08-21 15:10:59',398.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 (11769,8,8,'2019-08-21 15:10:59',399.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 (11770,8,8,'2019-08-21 15:10:59',399.866000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11771,8,8,'2019-08-21 15:10:59',400.832000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11772,8,8,'2019-08-21 15:10:59',401.731000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11773,8,8,'2019-08-21 15:10:59',402.680000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11774,8,8,'2019-08-21 15:10:59',402.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 (11775,8,8,'2019-08-21 15:10:59',403.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 (11776,8,8,'2019-08-21 15:10:59',404.495000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11777,8,8,'2019-08-21 15:10:59',404.910000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11778,8,8,'2019-08-21 15:10:59',405.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 (11779,8,8,'2019-08-21 15:10:59',406.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 (11780,8,8,'2019-08-21 15:10:59',407.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 (11781,8,8,'2019-08-21 15:10:59',408.091000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11782,8,8,'2019-08-21 15:10:59',408.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 (11783,8,8,'2019-08-21 15:10:59',408.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 (11784,8,8,'2019-08-21 15:10:59',409.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 (11785,8,8,'2019-08-21 15:10:59',410.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 (11786,8,8,'2019-08-21 15:10:59',411.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 (11787,8,8,'2019-08-21 15:10:59',412.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 (11788,8,8,'2019-08-21 15:10:59',412.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 (11789,8,8,'2019-08-21 15:10:59',413.552000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11790,8,8,'2019-08-21 15:10:59',414.351000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11791,8,8,'2019-08-21 15:10:59',414.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 (11792,8,8,'2019-08-21 15:10:59',415.149000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11793,8,8,'2019-08-21 15:10:59',415.949000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11794,8,8,'2019-08-21 15:10:59',416.915000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11795,8,8,'2019-08-21 15:10:59',417.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 (11796,8,8,'2019-08-21 15:10:59',417.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 (11797,8,8,'2019-08-21 15:10:59',418.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 (11798,8,8,'2019-08-21 15:10:59',419.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 (11799,8,8,'2019-08-21 15:10:59',419.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 (11800,8,8,'2019-08-21 15:10:59',419.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 (11801,8,8,'2019-08-21 15:10:59',420.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 (11802,8,8,'2019-08-21 15:10:59',421.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 (11803,8,8,'2019-08-21 15:10:59',422.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 (11804,8,8,'2019-08-21 15:10:59',423.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 (11805,8,8,'2019-08-21 15:10:59',424.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 (11806,8,8,'2019-08-21 15:10:59',425.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 (11807,8,8,'2019-08-21 15:10:59',425.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 (11808,8,8,'2019-08-21 15:10:59',425.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 (11809,8,8,'2019-08-21 15:10:59',426.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 (11810,8,8,'2019-08-21 15:10:59',426.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 (11811,8,8,'2019-08-21 15:10:59',427.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 (11812,8,8,'2019-08-21 15:10:59',428.318000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11813,8,8,'2019-08-21 15:10:59',429.301000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11814,8,8,'2019-08-21 15:10:59',430.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 (11815,8,8,'2019-08-21 15:10:59',431.016000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11816,8,8,'2019-08-21 15:10:59',431.384000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11817,8,8,'2019-08-21 15:10:59',431.965000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11818,8,8,'2019-08-21 15:10:59',432.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 (11819,8,8,'2019-08-21 15:10:59',433.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 (11820,8,8,'2019-08-21 15:10:59',434.127000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11821,8,8,'2019-08-21 15:10:59',434.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 (11822,8,8,'2019-08-21 15:10:59',435.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 (11823,8,8,'2019-08-21 15:10:59',436.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 (11824,8,8,'2019-08-21 15:10:59',436.643000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11825,8,8,'2019-08-21 15:10:59',437.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 (11826,8,8,'2019-08-21 15:10:59',437.409000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11827,8,8,'2019-08-21 15:10:59',438.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 (11828,8,8,'2019-08-21 15:10:59',439.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 (11829,8,8,'2019-08-21 15:10:59',440.173000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11830,8,8,'2019-08-21 15:10:59',440.602000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11831,8,8,'2019-08-21 15:10:59',441.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 (11832,8,8,'2019-08-21 15:10:59',441.971000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11833,8,8,'2019-08-21 15:10:59',442.937000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11834,8,8,'2019-08-21 15:10:59',443.735000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11835,8,8,'2019-08-21 15:10:59',444.584000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11836,8,8,'2019-08-21 15:10:59',444.959000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11837,8,8,'2019-08-21 15:10:59',445.384000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11838,8,8,'2019-08-21 15:10:59',446.232000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11839,8,8,'2019-08-21 15:10:59',447.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 (11840,8,8,'2019-08-21 15:10:59',447.530000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11841,8,8,'2019-08-21 15:10:59',447.914000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11842,8,8,'2019-08-21 15:10:59',448.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 (11843,8,8,'2019-08-21 15:10:59',449.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 (11844,8,8,'2019-08-21 15:10:59',449.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 (11845,8,8,'2019-08-21 15:10:59',450.545000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11846,8,8,'2019-08-21 15:10:59',450.960000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11847,8,8,'2019-08-21 15:10:59',451.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 (11848,8,8,'2019-08-21 15:10:59',451.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 (11849,8,8,'2019-08-21 15:10:59',452.343000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11850,8,8,'2019-08-21 15:10:59',453.342000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11851,8,8,'2019-08-21 15:10:59',454.207000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11852,8,8,'2019-08-21 15:10:59',455.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 (11853,8,8,'2019-08-21 15:10:59',455.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 (11854,8,8,'2019-08-21 15:10:59',456.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 (11855,8,8,'2019-08-21 15:10:59',457.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 (11856,8,8,'2019-08-21 15:10:59',458.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 (11857,8,8,'2019-08-21 15:10:59',459.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 (11858,8,8,'2019-08-21 15:10:59',459.784000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11859,8,8,'2019-08-21 15:10:59',460.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 (11860,8,8,'2019-08-21 15:10:59',460.722000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11861,8,8,'2019-08-21 15:10:59',461.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 (11862,8,8,'2019-08-21 15:10:59',462.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 (11863,8,8,'2019-08-21 15:10:59',462.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 (11864,8,8,'2019-08-21 15:10:59',463.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 (11865,8,8,'2019-08-21 15:10:59',463.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 (11866,8,8,'2019-08-21 15:10:59',464.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 (11867,8,8,'2019-08-21 15:10:59',465.528000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11868,8,8,'2019-08-21 15:10:59',465.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 (11869,8,8,'2019-08-21 15:10:59',466.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 (11870,8,8,'2019-08-21 15:10:59',467.243000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11871,8,8,'2019-08-21 15:10:59',468.108000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11872,8,8,'2019-08-21 15:10:59',468.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 (11873,8,8,'2019-08-21 15:10:59',468.975000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11874,8,8,'2019-08-21 15:10:59',469.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 (11875,8,8,'2019-08-21 15:10:59',470.122000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11876,8,8,'2019-08-21 15:10:59',470.706000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11877,8,8,'2019-08-21 15:10:59',471.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 (11878,8,8,'2019-08-21 15:10:59',472.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 (11879,8,8,'2019-08-21 15:10:59',473.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 (11880,8,8,'2019-08-21 15:10:59',474.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 (11881,8,8,'2019-08-21 15:10:59',474.660000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11882,8,8,'2019-08-21 15:10:59',475.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 (11883,8,8,'2019-08-21 15:10:59',476.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 (11884,8,8,'2019-08-21 15:10:59',476.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 (11885,8,8,'2019-08-21 15:10:59',476.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 (11886,8,8,'2019-08-21 15:10:59',477.453000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11887,8,8,'2019-08-21 15:10:59',477.814000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11888,8,8,'2019-08-21 15:10:59',478.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 (11889,8,8,'2019-08-21 15:10:59',479.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 (11890,8,8,'2019-08-21 15:10:59',480.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 (11891,8,8,'2019-08-21 15:10:59',480.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 (11892,8,8,'2019-08-21 15:10:59',481.311000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11893,8,8,'2019-08-21 15:10:59',482.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 (11894,8,8,'2019-08-21 15:10:59',483.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 (11895,8,8,'2019-08-21 15:10:59',484.008000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11896,8,8,'2019-08-21 15:10:59',484.352000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11897,8,8,'2019-08-21 15:10:59',484.957000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11898,8,8,'2019-08-21 15:10:59',485.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 (11899,8,8,'2019-08-21 15:10:59',485.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 (11900,8,8,'2019-08-21 15:10:59',486.738000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11901,8,8,'2019-08-21 15:10:59',487.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 (11902,8,8,'2019-08-21 15:10:59',487.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 (11903,8,8,'2019-08-21 15:10:59',488.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 (11904,8,8,'2019-08-21 15:10:59',489.269000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11905,8,8,'2019-08-21 15:10:59',490.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 (11906,8,8,'2019-08-21 15:10:59',491.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 (11907,8,8,'2019-08-21 15:10:59',491.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 (11908,8,8,'2019-08-21 15:10:59',492.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 (11909,8,8,'2019-08-21 15:10:59',492.915000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11910,8,8,'2019-08-21 15:10:59',493.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 (11911,8,8,'2019-08-21 15:10:59',493.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 (11912,8,8,'2019-08-21 15:10:59',494.880000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11913,8,8,'2019-08-21 15:10:59',495.334000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11914,8,8,'2019-08-21 15:10:59',495.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 (11915,8,8,'2019-08-21 15:10:59',496.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 (11916,8,8,'2019-08-21 15:10:59',497.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 (11917,8,8,'2019-08-21 15:10:59',498.326000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11918,8,8,'2019-08-21 15:10:59',498.723000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11919,8,8,'2019-08-21 15:10:59',499.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 (11920,8,8,'2019-08-21 15:10:59',500.141000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11921,8,8,'2019-08-21 15:10:59',500.528000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11922,8,8,'2019-08-21 15:10:59',501.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 (11923,8,8,'2019-08-21 15:10:59',502.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 (11924,8,8,'2019-08-21 15:10:59',502.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 (11925,8,8,'2019-08-21 15:10:59',503.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 (11926,8,8,'2019-08-21 15:10:59',504.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 (11927,8,8,'2019-08-21 15:10:59',504.976000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11928,8,8,'2019-08-21 15:10:59',505.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 (11929,8,8,'2019-08-21 15:10:59',506.233000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11930,8,8,'2019-08-21 15:10:59',506.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 (11931,8,8,'2019-08-21 15:10:59',507.050000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11932,8,8,'2019-08-21 15:10:59',507.948000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11933,8,8,'2019-08-21 15:10:59',508.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 (11934,8,8,'2019-08-21 15:10:59',509.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 (11935,8,8,'2019-08-21 15:10:59',510.230000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11936,8,8,'2019-08-21 15:10:59',510.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 (11937,8,8,'2019-08-21 15:10:59',511.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 (11938,8,8,'2019-08-21 15:10:59',511.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 (11939,8,8,'2019-08-21 15:10:59',512.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 (11940,8,8,'2019-08-21 15:10:59',513.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 (11941,8,8,'2019-08-21 15:10:59',514.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 (11942,8,8,'2019-08-21 15:10:59',514.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 (11943,8,8,'2019-08-21 15:10:59',515.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 (11944,8,8,'2019-08-21 15:10:59',515.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 (11945,8,8,'2019-08-21 15:10:59',516.855000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11946,8,8,'2019-08-21 15:10:59',517.871000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11947,8,8,'2019-08-21 15:10:59',518.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 (11948,8,8,'2019-08-21 15:10:59',519.085000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11949,8,8,'2019-08-21 15:10:59',519.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 (11950,8,8,'2019-08-21 15:10:59',520.013000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11951,8,8,'2019-08-21 15:10:59',520.651000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11952,8,8,'2019-08-21 15:10:59',521.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 (11953,8,8,'2019-08-21 15:10:59',522.433000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11954,8,8,'2019-08-21 15:10:59',523.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 (11955,8,8,'2019-08-21 15:10:59',524.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 (11956,8,8,'2019-08-21 15:10:59',524.359000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11957,8,8,'2019-08-21 15:10:59',524.863000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11958,8,8,'2019-08-21 15:10:59',525.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 (11959,8,8,'2019-08-21 15:10:59',526.645000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11960,8,8,'2019-08-21 15:10:59',526.951000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11961,8,8,'2019-08-21 15:10:59',527.644000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11962,8,8,'2019-08-21 15:10:59',528.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 (11963,8,8,'2019-08-21 15:10:59',529.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 (11964,8,8,'2019-08-21 15:10:59',529.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 (11965,8,8,'2019-08-21 15:10:59',530.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 (11966,8,8,'2019-08-21 15:10:59',531.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 (11967,8,8,'2019-08-21 15:10:59',531.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 (11968,8,8,'2019-08-21 15:10:59',532.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 (11969,8,8,'2019-08-21 15:10:59',532.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 (11970,8,8,'2019-08-21 15:10:59',532.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 (11971,8,8,'2019-08-21 15:10:59',533.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 (11972,8,8,'2019-08-21 15:10:59',534.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 (11973,8,8,'2019-08-21 15:10:59',535.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 (11974,8,8,'2019-08-21 15:10:59',536.417000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11975,8,8,'2019-08-21 15:10:59',537.416000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11976,8,8,'2019-08-21 15:10:59',538.266000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11977,8,8,'2019-08-21 15:10:59',538.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 (11978,8,8,'2019-08-21 15:10:59',539.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 (11979,8,8,'2019-08-21 15:10:59',539.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 (11980,8,8,'2019-08-21 15:10:59',539.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 (11981,8,8,'2019-08-21 15:10:59',540.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 (11982,8,8,'2019-08-21 15:10:59',541.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 (11983,8,8,'2019-08-21 15:10:59',542.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 (11984,8,8,'2019-08-21 15:10:59',542.461000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11985,8,8,'2019-08-21 15:10:59',543.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 (11986,8,8,'2019-08-21 15:10:59',543.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 (11987,8,8,'2019-08-21 15:10:59',544.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 (11988,8,8,'2019-08-21 15:10:59',545.191000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11989,8,8,'2019-08-21 15:10:59',546.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 (11990,8,8,'2019-08-21 15:10:59',546.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 (11991,8,8,'2019-08-21 15:10:59',547.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 (11992,8,8,'2019-08-21 15:10:59',548.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 (11993,8,8,'2019-08-21 15:10:59',548.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 (11994,8,8,'2019-08-21 15:10:59',549.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 (11995,8,8,'2019-08-21 15:10:59',550.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 (11996,8,8,'2019-08-21 15:10:59',551.085000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11997,8,8,'2019-08-21 15:10:59',551.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 (11998,8,8,'2019-08-21 15:10:59',551.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 (11999,8,8,'2019-08-21 15:10:59',552.483000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12000,8,8,'2019-08-21 15:10:59',553.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 (12001,8,8,'2019-08-21 15:10:59',553.798000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12002,8,8,'2019-08-21 15:10:59',554.364000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12003,8,8,'2019-08-21 15:10:59',555.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 (12004,8,8,'2019-08-21 15:10:59',556.180000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12005,8,8,'2019-08-21 15:10:59',557.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 (12006,8,8,'2019-08-21 15:10:59',558.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 (12007,8,8,'2019-08-21 15:10:59',559.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 (12008,8,8,'2019-08-21 15:10:59',559.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 (12009,8,8,'2019-08-21 15:10:59',560.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 (12010,8,8,'2019-08-21 15:10:59',561.007000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12011,8,8,'2019-08-21 15:10:59',561.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 (12012,8,8,'2019-08-21 15:10:59',562.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 (12013,8,8,'2019-08-21 15:10:59',562.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 (12014,8,8,'2019-08-21 15:10:59',563.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 (12015,8,8,'2019-08-21 15:10:59',564.014000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12016,8,8,'2019-08-21 15:10:59',564.387000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12017,8,8,'2019-08-21 15:10:59',565.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 (12018,8,8,'2019-08-21 15:10:59',566.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 (12019,8,8,'2019-08-21 15:10:59',567.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 (12020,8,8,'2019-08-21 15:10:59',567.856000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12021,8,8,'2019-08-21 15:10:59',568.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 (12022,8,8,'2019-08-21 15:10:59',569.165000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12023,8,8,'2019-08-21 15:10:59',570.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 (12024,8,8,'2019-08-21 15:10:59',570.979000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12025,8,8,'2019-08-21 15:10:59',571.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 (12026,8,8,'2019-08-21 15:10:59',572.152000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12027,8,8,'2019-08-21 15:10:59',572.595000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12028,8,8,'2019-08-21 15:10:59',573.040000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12029,8,8,'2019-08-21 15:10:59',583.285000,0.000000,NULL,NULL,NULL,NULL,'e-186',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12030,8,8,'2019-08-21 15:10:59',583.287000,0.000000,NULL,NULL,NULL,NULL,'e-219',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12031,8,8,'2019-08-21 15:10:59',583.288000,0.000000,NULL,NULL,NULL,NULL,'e-240',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12032,8,8,'2019-08-21 15:10:59',583.290000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12033,8,8,'2019-08-21 15:10:59',583.291000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12034,8,8,'2019-08-21 15:10:59',583.292000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12035,8,8,'2019-08-21 15:10:59',583.348000,0.000000,NULL,NULL,NULL,NULL,'e-253',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12036,8,8,'2019-08-21 15:10:59',583.350000,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 (12037,8,8,'2019-08-21 15:10:59',583.352000,0.000000,NULL,NULL,NULL,NULL,'e-150',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12038,8,8,'2019-08-21 15:10:59',583.353000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12039,8,8,'2019-08-21 15:10:59',583.354000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12040,8,8,'2019-08-21 15:10:59',583.354000,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 (12041,8,8,'2019-08-21 15:10:59',583.357000,0.000000,NULL,NULL,NULL,NULL,'e-248',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12042,8,8,'2019-08-21 15:10:59',583.359000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12043,8,8,'2019-08-21 15:10:59',583.360000,0.000000,NULL,NULL,NULL,NULL,'e-220',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12044,8,8,'2019-08-21 15:10:59',583.361000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12045,8,8,'2019-08-21 15:10:59',583.409000,0.000000,NULL,NULL,NULL,NULL,'e-251',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12046,8,8,'2019-08-21 15:10:59',583.473000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12047,8,8,'2019-08-21 15:10:59',583.474000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12048,8,8,'2019-08-21 15:10:59',583.477000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12049,8,8,'2019-08-21 15:10:59',583.478000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12050,8,8,'2019-08-21 15:10:59',583.480000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12051,8,8,'2019-08-21 15:10:59',583.481000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12052,8,8,'2019-08-21 15:10:59',583.483000,0.000000,NULL,NULL,NULL,NULL,'e-186',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12053,8,8,'2019-08-21 15:10:59',583.484000,0.000000,NULL,NULL,NULL,NULL,'e-236',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12054,8,8,'2019-08-21 15:10:59',583.485000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12055,8,8,'2019-08-21 15:10:59',583.534000,0.000000,NULL,NULL,NULL,NULL,'e-219',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12056,8,8,'2019-08-21 15:10:59',583.535000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12057,8,8,'2019-08-21 15:10:59',583.536000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12058,8,8,'2019-08-21 15:10:59',583.539000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12059,8,8,'2019-08-21 15:10:59',583.540000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12060,8,8,'2019-08-21 15:10:59',583.543000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12061,8,8,'2019-08-21 15:10:59',583.544000,0.000000,NULL,NULL,NULL,NULL,'e-240',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12062,8,8,'2019-08-21 15:10:59',583.546000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12063,8,8,'2019-08-21 15:10:59',583.547000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12064,8,8,'2019-08-21 15:10:59',583.548000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12065,8,8,'2019-08-21 15:10:59',583.597000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12066,8,8,'2019-08-21 15:10:59',583.599000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12067,8,8,'2019-08-21 15:10:59',583.602000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12068,8,8,'2019-08-21 15:10:59',583.603000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12069,8,8,'2019-08-21 15:10:59',583.605000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12070,8,8,'2019-08-21 15:10:59',583.606000,0.000000,NULL,NULL,NULL,NULL,'e-241',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12071,8,8,'2019-08-21 15:10:59',583.608000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12072,8,8,'2019-08-21 15:10:59',583.609000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12073,8,8,'2019-08-21 15:10:59',583.610000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12074,8,8,'2019-08-21 15:10:59',583.659000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12075,8,8,'2019-08-21 15:10:59',583.661000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12076,8,8,'2019-08-21 15:10:59',583.664000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12077,8,8,'2019-08-21 15:10:59',583.665000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12078,8,8,'2019-08-21 15:10:59',583.668000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12079,8,8,'2019-08-21 15:10:59',583.669000,0.000000,NULL,NULL,NULL,NULL,'e-241',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12080,8,8,'2019-08-21 15:10:59',583.672000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12081,8,8,'2019-08-21 15:10:59',583.673000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12082,8,8,'2019-08-21 15:10:59',583.722000,0.000000,NULL,NULL,NULL,NULL,'e-219',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12083,8,8,'2019-08-21 15:10:59',583.723000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12084,8,8,'2019-08-21 15:10:59',583.725000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12085,8,8,'2019-08-21 15:10:59',583.727000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12086,8,8,'2019-08-21 15:10:59',583.728000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12087,8,8,'2019-08-21 15:10:59',583.730000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12088,8,8,'2019-08-21 15:10:59',583.732000,0.000000,NULL,NULL,NULL,NULL,'e-191',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12089,8,8,'2019-08-21 15:10:59',583.734000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12090,8,8,'2019-08-21 15:10:59',583.735000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12091,8,8,'2019-08-21 15:10:59',583.784000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12092,8,8,'2019-08-21 15:10:59',583.785000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12093,8,8,'2019-08-21 15:10:59',583.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 (12094,8,8,'2019-08-21 15:10:59',583.789000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12095,8,8,'2019-08-21 15:10:59',583.790000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12096,8,8,'2019-08-21 15:10:59',583.793000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12097,8,8,'2019-08-21 15:10:59',583.795000,0.000000,NULL,NULL,NULL,NULL,'e-191',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12098,8,8,'2019-08-21 15:10:59',583.797000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12099,8,8,'2019-08-21 15:10:59',583.798000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12100,8,8,'2019-08-21 15:10:59',583.847000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12101,8,8,'2019-08-21 15:10:59',583.849000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12102,8,8,'2019-08-21 15:10:59',583.852000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12103,8,8,'2019-08-21 15:10:59',583.853000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12104,8,8,'2019-08-21 15:10:59',583.855000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12105,8,8,'2019-08-21 15:10:59',583.856000,0.000000,NULL,NULL,NULL,NULL,'e-240',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12106,8,8,'2019-08-21 15:10:59',583.858000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12107,8,8,'2019-08-21 15:10:59',583.859000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12108,8,8,'2019-08-21 15:10:59',583.860000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12109,8,8,'2019-08-21 15:10:59',588.003000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12110,8,8,'2019-08-21 15:10:59',588.005000,0.000000,NULL,NULL,NULL,NULL,'e-189',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12111,8,8,'2019-08-21 15:10:59',588.007000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12112,8,8,'2019-08-21 15:10:59',588.009000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12113,8,8,'2019-08-21 15:10:59',588.010000,0.000000,NULL,NULL,NULL,NULL,'e-251',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12114,8,8,'2019-08-21 15:10:59',588.012000,0.000000,NULL,NULL,NULL,NULL,'e-240',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12115,8,8,'2019-08-21 15:10:59',588.014000,0.000000,NULL,NULL,NULL,NULL,'e-221',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12116,8,8,'2019-08-21 15:10:59',588.016000,0.000000,NULL,NULL,NULL,NULL,'e-242',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12117,8,8,'2019-08-21 15:10:59',588.017000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12118,8,8,'2019-08-21 15:10:59',588.065000,0.000000,NULL,NULL,NULL,NULL,'e-207',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12119,8,8,'2019-08-21 15:10:59',588.067000,0.000000,NULL,NULL,NULL,NULL,'e-241',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12120,8,8,'2019-08-21 15:10:59',588.068000,0.000000,NULL,NULL,NULL,NULL,'e-250',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12121,8,8,'2019-08-21 15:10:59',588.071000,0.000000,NULL,NULL,NULL,NULL,'e-236',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12122,8,8,'2019-08-21 15:10:59',588.072000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12123,8,8,'2019-08-21 15:10:59',588.073000,0.000000,NULL,NULL,NULL,NULL,'e-250',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12124,8,8,'2019-08-21 15:10:59',588.078000,0.000000,NULL,NULL,NULL,NULL,'e-182',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12125,8,8,'2019-08-21 15:10:59',588.079000,0.000000,NULL,NULL,NULL,NULL,'e-250',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12126,8,8,'2019-08-21 15:10:59',588.080000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12127,8,8,'2019-08-21 15:10:59',588.128000,0.000000,NULL,NULL,NULL,NULL,'e-207',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12128,8,8,'2019-08-21 15:10:59',588.130000,0.000000,NULL,NULL,NULL,NULL,'e-241',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12129,8,8,'2019-08-21 15:10:59',588.131000,0.000000,NULL,NULL,NULL,NULL,'e-251',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12130,8,8,'2019-08-21 15:10:59',588.134000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12131,8,8,'2019-08-21 15:10:59',588.135000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12132,8,8,'2019-08-21 15:10:59',588.141000,0.000000,NULL,NULL,NULL,NULL,'e-182',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12133,8,8,'2019-08-21 15:10:59',588.142000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12134,8,8,'2019-08-21 15:10:59',588.144000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12135,8,8,'2019-08-21 15:10:59',588.191000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12136,8,8,'2019-08-21 15:10:59',588.193000,0.000000,NULL,NULL,NULL,NULL,'e-223',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12137,8,8,'2019-08-21 15:10:59',588.195000,0.000000,NULL,NULL,NULL,NULL,'e-253',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12138,8,8,'2019-08-21 15:10:59',588.197000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12139,8,8,'2019-08-21 15:10:59',588.198000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12140,8,8,'2019-08-21 15:10:59',588.202000,0.000000,NULL,NULL,NULL,NULL,'e-209',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12141,8,8,'2019-08-21 15:10:59',588.204000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12142,8,8,'2019-08-21 15:10:59',588.205000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12143,8,8,'2019-08-21 15:10:59',588.207000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12144,8,8,'2019-08-21 15:10:59',588.253000,0.000000,NULL,NULL,NULL,NULL,'e-206',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12145,8,8,'2019-08-21 15:10:59',588.255000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12146,8,8,'2019-08-21 15:10:59',588.257000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12147,8,8,'2019-08-21 15:10:59',588.259000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12148,8,8,'2019-08-21 15:10:59',588.260000,0.000000,NULL,NULL,NULL,NULL,'e-250',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12149,8,8,'2019-08-21 15:10:59',588.261000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12150,8,8,'2019-08-21 15:10:59',588.263000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12151,8,8,'2019-08-21 15:10:59',588.266000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12152,8,8,'2019-08-21 15:10:59',588.267000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12153,8,8,'2019-08-21 15:10:59',588.315000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12154,8,8,'2019-08-21 15:10:59',588.317000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12155,8,8,'2019-08-21 15:10:59',588.320000,0.000000,NULL,NULL,NULL,NULL,'e-180',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12156,8,8,'2019-08-21 15:10:59',588.321000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12157,8,8,'2019-08-21 15:10:59',588.325000,0.000000,NULL,NULL,NULL,NULL,'e-202',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12158,8,8,'2019-08-21 15:10:59',588.326000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12159,8,8,'2019-08-21 15:10:59',588.328000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12160,8,8,'2019-08-21 15:10:59',588.329000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12161,8,8,'2019-08-21 15:10:59',588.330000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12162,8,8,'2019-08-21 15:10:59',588.378000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12163,8,8,'2019-08-21 15:10:59',588.380000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12164,8,8,'2019-08-21 15:10:59',588.383000,0.000000,NULL,NULL,NULL,NULL,'e-178',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12165,8,8,'2019-08-21 15:10:59',588.384000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12166,8,8,'2019-08-21 15:10:59',588.388000,0.000000,NULL,NULL,NULL,NULL,'e-206',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12167,8,8,'2019-08-21 15:10:59',588.389000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12168,8,8,'2019-08-21 15:10:59',588.391000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12169,8,8,'2019-08-21 15:10:59',588.392000,0.000000,NULL,NULL,NULL,NULL,'e-210',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12170,8,8,'2019-08-21 15:10:59',588.393000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12171,8,8,'2019-08-21 15:10:59',588.440000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12172,8,8,'2019-08-21 15:10:59',588.442000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12173,8,8,'2019-08-21 15:10:59',588.445000,0.000000,NULL,NULL,NULL,NULL,'e-178',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12174,8,8,'2019-08-21 15:10:59',588.446000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12175,8,8,'2019-08-21 15:10:59',588.450000,0.000000,NULL,NULL,NULL,NULL,'e-206',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12176,8,8,'2019-08-21 15:10:59',588.451000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12177,8,8,'2019-08-21 15:10:59',588.453000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12178,8,8,'2019-08-21 15:10:59',588.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 (12179,8,8,'2019-08-21 15:10:59',588.455000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12180,8,8,'2019-08-21 15:10:59',588.503000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12181,8,8,'2019-08-21 15:10:59',588.505000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12182,8,8,'2019-08-21 15:10:59',588.508000,0.000000,NULL,NULL,NULL,NULL,'e-178',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12183,8,8,'2019-08-21 15:10:59',588.509000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12184,8,8,'2019-08-21 15:10:59',588.513000,0.000000,NULL,NULL,NULL,NULL,'e-206',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12185,8,8,'2019-08-21 15:10:59',588.514000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12186,8,8,'2019-08-21 15:10:59',588.516000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12187,8,8,'2019-08-21 15:10:59',588.517000,0.000000,NULL,NULL,NULL,NULL,'e-210',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12188,8,8,'2019-08-21 15:10:59',588.518000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12189,8,8,'2019-08-21 15:10:59',588.565000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12190,8,8,'2019-08-21 15:10:59',588.570000,0.000000,NULL,NULL,NULL,NULL,'e-178',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12191,8,8,'2019-08-21 15:10:59',588.571000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12192,8,8,'2019-08-21 15:10:59',588.575000,0.000000,NULL,NULL,NULL,NULL,'e-206',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12193,8,8,'2019-08-21 15:10:59',588.576000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12194,8,8,'2019-08-21 15:10:59',588.578000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12195,8,8,'2019-08-21 15:10:59',588.579000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12196,8,8,'2019-08-21 15:10:59',588.580000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12197,8,8,'2019-08-21 15:10:59',631.176000,0.000000,NULL,NULL,NULL,NULL,'e-198',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12198,8,8,'2019-08-21 15:10:59',650.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 (12199,8,8,'2019-08-21 15:10:59',650.449000,0.000000,NULL,NULL,NULL,NULL,'e-198',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12200,8,8,'2019-08-21 15:10:59',670.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 (12201,8,8,'2019-08-21 15:10:59',671.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 (12202,8,8,'2019-08-21 15:10:59',672.661000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12203,8,8,'2019-08-21 15:10:59',673.022000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12204,8,8,'2019-08-21 15:10:59',673.560000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12205,8,8,'2019-08-21 15:10:59',674.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 (12206,8,8,'2019-08-21 15:10:59',675.208000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12207,8,8,'2019-08-21 15:10:59',675.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 (12208,8,8,'2019-08-21 15:10:59',676.074000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12209,8,8,'2019-08-21 15:10:59',677.072000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12210,8,8,'2019-08-21 15:10:59',677.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 (12211,8,8,'2019-08-21 15:10:59',678.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 (12212,8,8,'2019-08-21 15:10:59',678.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 (12213,8,8,'2019-08-21 15:10:59',679.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 (12214,8,8,'2019-08-21 15:10:59',679.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 (12215,8,8,'2019-08-21 15:10:59',680.535000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12216,8,8,'2019-08-21 15:10:59',681.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 (12217,8,8,'2019-08-21 15:10:59',681.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 (12218,8,8,'2019-08-21 15:10:59',682.301000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12219,8,8,'2019-08-21 15:10:59',683.133000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12220,8,8,'2019-08-21 15:10:59',683.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 (12221,8,8,'2019-08-21 15:10:59',683.965000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12222,8,8,'2019-08-21 15:10:59',684.914000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12223,8,8,'2019-08-21 15:10:59',685.813000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12224,8,8,'2019-08-21 15:10:59',686.612000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12225,8,8,'2019-08-21 15:10:59',687.428000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12226,8,8,'2019-08-21 15:10:59',687.848000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12227,8,8,'2019-08-21 15:10:59',688.228000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12228,8,8,'2019-08-21 15:10:59',688.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 (12229,8,8,'2019-08-21 15:10:59',688.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 (12230,8,8,'2019-08-21 15:10:59',689.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 (12231,8,8,'2019-08-21 15:10:59',690.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 (12232,8,8,'2019-08-21 15:10:59',691.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 (12233,8,8,'2019-08-21 15:10:59',692.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 (12234,8,8,'2019-08-21 15:10:59',693.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 (12235,8,8,'2019-08-21 15:10:59',693.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 (12236,8,8,'2019-08-21 15:10:59',694.154000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12237,8,8,'2019-08-21 15:10:59',694.665000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12238,8,8,'2019-08-21 15:10:59',695.137000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12239,8,8,'2019-08-21 15:10:59',696.118000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12240,8,8,'2019-08-21 15:10:59',696.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 (12241,8,8,'2019-08-21 15:10:59',697.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 (12242,8,8,'2019-08-21 15:10:59',698.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 (12243,8,8,'2019-08-21 15:10:59',699.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 (12244,8,8,'2019-08-21 15:10:59',700.364000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12245,8,8,'2019-08-21 15:10:59',700.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 (12246,8,8,'2019-08-21 15:10:59',701.263000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12247,8,8,'2019-08-21 15:10:59',701.613000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12248,8,8,'2019-08-21 15:10:59',702.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 (12249,8,8,'2019-08-21 15:10:59',702.783000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12250,8,8,'2019-08-21 15:10:59',703.077000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12251,8,8,'2019-08-21 15:10:59',704.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 (12252,8,8,'2019-08-21 15:10:59',704.909000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12253,8,8,'2019-08-21 15:10:59',705.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 (12254,8,8,'2019-08-21 15:10:59',705.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 (12255,8,8,'2019-08-21 15:10:59',706.523000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12256,8,8,'2019-08-21 15:10:59',707.473000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12257,8,8,'2019-08-21 15:10:59',708.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 (12258,8,8,'2019-08-21 15:10:59',709.204000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12259,8,8,'2019-08-21 15:10:59',710.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 (12260,8,8,'2019-08-21 15:10:59',710.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 (12261,8,8,'2019-08-21 15:10:59',711.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 (12262,8,8,'2019-08-21 15:10:59',711.718000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12263,8,8,'2019-08-21 15:10:59',712.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 (12264,8,8,'2019-08-21 15:10:59',712.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 (12265,8,8,'2019-08-21 15:10:59',713.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 (12266,8,8,'2019-08-21 15:10:59',713.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 (12267,8,8,'2019-08-21 15:10:59',714.332000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12268,8,8,'2019-08-21 15:10:59',715.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 (12269,8,8,'2019-08-21 15:10:59',716.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 (12270,8,8,'2019-08-21 15:10:59',716.929000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12271,8,8,'2019-08-21 15:10:59',717.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 (12272,8,8,'2019-08-21 15:10:59',717.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 (12273,8,8,'2019-08-21 15:10:59',718.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 (12274,8,8,'2019-08-21 15:10:59',718.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 (12275,8,8,'2019-08-21 15:10:59',718.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 (12276,8,8,'2019-08-21 15:10:59',719.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 (12277,8,8,'2019-08-21 15:10:59',720.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 (12278,8,8,'2019-08-21 15:10:59',721.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 (12279,8,8,'2019-08-21 15:10:59',722.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 (12280,8,8,'2019-08-21 15:10:59',723.089000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12281,8,8,'2019-08-21 15:10:59',724.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 (12282,8,8,'2019-08-21 15:10:59',724.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 (12283,8,8,'2019-08-21 15:10:59',725.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 (12284,8,8,'2019-08-21 15:10:59',725.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 (12285,8,8,'2019-08-21 15:10:59',726.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 (12286,8,8,'2019-08-21 15:10:59',727.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 (12287,8,8,'2019-08-21 15:10:59',727.634000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12288,8,8,'2019-08-21 15:10:59',728.533000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12289,8,8,'2019-08-21 15:10:59',728.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 (12290,8,8,'2019-08-21 15:10:59',729.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 (12291,8,8,'2019-08-21 15:10:59',729.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 (12292,8,8,'2019-08-21 15:10:59',730.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 (12293,8,8,'2019-08-21 15:10:59',731.030000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12294,8,8,'2019-08-21 15:10:59',731.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 (12295,8,8,'2019-08-21 15:10:59',732.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 (12296,8,8,'2019-08-21 15:10:59',733.777000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12297,8,8,'2019-08-21 15:10:59',734.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 (12298,8,8,'2019-08-21 15:10:59',734.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 (12299,8,8,'2019-08-21 15:10:59',735.592000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12300,8,8,'2019-08-21 15:10:59',735.923000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12301,8,8,'2019-08-21 15:10:59',736.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 (12302,8,8,'2019-08-21 15:10:59',737.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 (12303,8,8,'2019-08-21 15:10:59',737.906000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12304,8,8,'2019-08-21 15:10:59',738.822000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12305,8,8,'2019-08-21 15:10:59',739.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 (12306,8,8,'2019-08-21 15:10:59',739.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 (12307,8,8,'2019-08-21 15:10:59',740.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 (12308,8,8,'2019-08-21 15:10:59',741.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 (12309,8,8,'2019-08-21 15:10:59',741.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 (12310,8,8,'2019-08-21 15:10:59',742.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 (12311,8,8,'2019-08-21 15:10:59',743.134000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12312,8,8,'2019-08-21 15:10:59',743.949000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12313,8,8,'2019-08-21 15:10:59',744.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 (12314,8,8,'2019-08-21 15:10:59',745.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 (12315,8,8,'2019-08-21 15:10:59',745.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 (12316,8,8,'2019-08-21 15:10:59',746.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 (12317,8,8,'2019-08-21 15:10:59',746.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 (12318,8,8,'2019-08-21 15:10:59',747.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 (12319,8,8,'2019-08-21 15:10:59',748.162000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12320,8,8,'2019-08-21 15:10:59',749.044000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12321,8,8,'2019-08-21 15:10:59',749.457000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12322,8,8,'2019-08-21 15:10:59',749.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 (12323,8,8,'2019-08-21 15:10:59',750.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 (12324,8,8,'2019-08-21 15:10:59',750.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 (12325,8,8,'2019-08-21 15:10:59',751.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 (12326,8,8,'2019-08-21 15:10:59',752.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 (12327,8,8,'2019-08-21 15:10:59',753.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 (12328,8,8,'2019-08-21 15:10:59',754.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 (12329,8,8,'2019-08-21 15:10:59',755.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 (12330,8,8,'2019-08-21 15:10:59',755.639000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12331,8,8,'2019-08-21 15:10:59',756.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 (12332,8,8,'2019-08-21 15:10:59',756.952000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12333,8,8,'2019-08-21 15:10:59',757.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 (12334,8,8,'2019-08-21 15:10:59',758.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 (12335,8,8,'2019-08-21 15:10:59',758.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 (12336,8,8,'2019-08-21 15:10:59',759.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 (12337,8,8,'2019-08-21 15:10:59',760.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 (12338,8,8,'2019-08-21 15:10:59',760.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 (12339,8,8,'2019-08-21 15:10:59',761.364000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12340,8,8,'2019-08-21 15:10:59',762.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 (12341,8,8,'2019-08-21 15:10:59',763.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 (12342,8,8,'2019-08-21 15:10:59',763.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 (12343,8,8,'2019-08-21 15:10:59',764.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 (12344,8,8,'2019-08-21 15:10:59',765.076000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12345,8,8,'2019-08-21 15:10:59',766.025000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12346,8,8,'2019-08-21 15:10:59',766.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 (12347,8,8,'2019-08-21 15:10:59',766.875000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12348,8,8,'2019-08-21 15:10:59',767.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 (12349,8,8,'2019-08-21 15:10:59',768.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 (12350,8,8,'2019-08-21 15:10:59',768.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 (12351,8,8,'2019-08-21 15:10:59',769.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 (12352,8,8,'2019-08-21 15:10:59',770.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 (12353,8,8,'2019-08-21 15:10:59',770.857000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12354,8,8,'2019-08-21 15:10:59',771.403000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12355,8,8,'2019-08-21 15:10:59',772.169000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12356,8,8,'2019-08-21 15:10:59',773.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 (12357,8,8,'2019-08-21 15:10:59',774.050000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12358,8,8,'2019-08-21 15:10:59',774.387000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12359,8,8,'2019-08-21 15:10:59',774.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 (12360,8,8,'2019-08-21 15:10:59',775.882000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12361,8,8,'2019-08-21 15:10:59',776.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 (12362,8,8,'2019-08-21 15:10:59',776.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 (12363,8,8,'2019-08-21 15:10:59',777.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 (12364,8,8,'2019-08-21 15:10:59',778.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 (12365,8,8,'2019-08-21 15:10:59',778.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 (12366,8,8,'2019-08-21 15:10:59',779.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 (12367,8,8,'2019-08-21 15:10:59',780.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 (12368,8,8,'2019-08-21 15:10:59',781.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 (12369,8,8,'2019-08-21 15:10:59',781.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 (12370,8,8,'2019-08-21 15:10:59',782.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 (12371,8,8,'2019-08-21 15:10:59',782.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 (12372,8,8,'2019-08-21 15:10:59',783.174000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12373,8,8,'2019-08-21 15:10:59',784.022000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12374,8,8,'2019-08-21 15:10:59',784.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 (12375,8,8,'2019-08-21 15:10:59',785.721000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12376,8,8,'2019-08-21 15:10:59',786.687000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12377,8,8,'2019-08-21 15:10:59',787.535000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12378,8,8,'2019-08-21 15:10:59',787.901000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12379,8,8,'2019-08-21 15:10:59',788.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 (12380,8,8,'2019-08-21 15:10:59',789.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 (12381,8,8,'2019-08-21 15:10:59',790.232000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12382,8,8,'2019-08-21 15:10:59',790.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 (12383,8,8,'2019-08-21 15:10:59',791.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 (12384,8,8,'2019-08-21 15:10:59',792.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 (12385,8,8,'2019-08-21 15:10:59',793.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 (12386,8,8,'2019-08-21 15:10:59',793.912000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12387,8,8,'2019-08-21 15:10:59',794.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 (12388,8,8,'2019-08-21 15:10:59',795.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 (12389,8,8,'2019-08-21 15:10:59',796.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 (12390,8,8,'2019-08-21 15:10:59',796.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 (12391,8,8,'2019-08-21 15:10:59',796.998000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12392,8,8,'2019-08-21 15:10:59',797.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 (12393,8,8,'2019-08-21 15:10:59',798.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 (12394,8,8,'2019-08-21 15:10:59',798.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 (12395,8,8,'2019-08-21 15:10:59',799.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 (12396,8,8,'2019-08-21 15:10:59',800.321000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12397,8,8,'2019-08-21 15:10:59',801.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 (12398,8,8,'2019-08-21 15:10:59',801.718000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12399,8,8,'2019-08-21 15:10:59',802.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 (12400,8,8,'2019-08-21 15:10:59',803.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 (12401,8,8,'2019-08-21 15:10:59',803.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 (12402,8,8,'2019-08-21 15:10:59',804.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 (12403,8,8,'2019-08-21 15:10:59',804.800000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12404,8,8,'2019-08-21 15:10:59',805.666000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12405,8,8,'2019-08-21 15:10:59',805.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 (12406,8,8,'2019-08-21 15:10:59',806.664000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12407,8,8,'2019-08-21 15:10:59',807.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 (12408,8,8,'2019-08-21 15:10:59',808.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 (12409,8,8,'2019-08-21 15:10:59',809.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 (12410,8,8,'2019-08-21 15:10:59',810.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 (12411,8,8,'2019-08-21 15:10:59',810.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 (12412,8,8,'2019-08-21 15:10:59',811.093000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12413,8,8,'2019-08-21 15:10:59',811.450000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12414,8,8,'2019-08-21 15:10:59',811.875000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12415,8,8,'2019-08-21 15:10:59',812.642000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12416,8,8,'2019-08-21 15:10:59',813.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 (12417,8,8,'2019-08-21 15:10:59',814.473000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12418,8,8,'2019-08-21 15:10:59',814.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 (12419,8,8,'2019-08-21 15:10:59',815.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 (12420,8,8,'2019-08-21 15:10:59',815.837000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12421,8,8,'2019-08-21 15:10:59',816.438000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12422,8,8,'2019-08-21 15:10:59',817.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 (12423,8,8,'2019-08-21 15:10:59',818.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 (12424,8,8,'2019-08-21 15:10:59',819.234000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12425,8,8,'2019-08-21 15:10:59',819.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 (12426,8,8,'2019-08-21 15:10:59',820.116000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12427,8,8,'2019-08-21 15:10:59',820.949000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12428,8,8,'2019-08-21 15:10:59',821.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 (12429,8,8,'2019-08-21 15:10:59',822.514000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12430,8,8,'2019-08-21 15:10:59',822.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 (12431,8,8,'2019-08-21 15:10:59',823.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 (12432,8,8,'2019-08-21 15:10:59',824.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 (12433,8,8,'2019-08-21 15:10:59',825.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 (12434,8,8,'2019-08-21 15:10:59',826.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 (12435,8,8,'2019-08-21 15:10:59',827.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 (12436,8,8,'2019-08-21 15:10:59',827.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 (12437,8,8,'2019-08-21 15:10:59',828.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 (12438,8,8,'2019-08-21 15:10:59',829.023000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12439,8,8,'2019-08-21 15:10:59',829.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 (12440,8,8,'2019-08-21 15:10:59',829.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 (12441,8,8,'2019-08-21 15:10:59',830.755000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12442,8,8,'2019-08-21 15:10:59',831.737000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12443,8,8,'2019-08-21 15:10:59',832.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 (12444,8,8,'2019-08-21 15:10:59',833.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 (12445,8,8,'2019-08-21 15:10:59',833.535000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12446,8,8,'2019-08-21 15:10:59',833.930000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12447,8,8,'2019-08-21 15:10:59',834.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 (12448,8,8,'2019-08-21 15:10:59',835.450000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12449,8,8,'2019-08-21 15:10:59',836.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 (12450,8,8,'2019-08-21 15:10:59',837.364000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12451,8,8,'2019-08-21 15:10:59',837.661000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12452,8,8,'2019-08-21 15:10:59',838.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 (12453,8,8,'2019-08-21 15:10:59',839.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 (12454,8,8,'2019-08-21 15:10:59',839.878000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12455,8,8,'2019-08-21 15:10:59',840.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 (12456,8,8,'2019-08-21 15:10:59',840.678000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12457,8,8,'2019-08-21 15:10:59',841.576000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12458,8,8,'2019-08-21 15:10:59',841.998000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12459,8,8,'2019-08-21 15:10:59',842.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 (12460,8,8,'2019-08-21 15:10:59',843.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 (12461,8,8,'2019-08-21 15:10:59',843.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 (12462,8,8,'2019-08-21 15:10:59',844.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 (12463,8,8,'2019-08-21 15:10:59',845.256000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12464,8,8,'2019-08-21 15:10:59',846.171000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12465,8,8,'2019-08-21 15:10:59',847.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 (12466,8,8,'2019-08-21 15:10:59',847.786000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12467,8,8,'2019-08-21 15:10:59',848.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 (12468,8,8,'2019-08-21 15:10:59',848.652000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12469,8,8,'2019-08-21 15:10:59',849.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 (12470,8,8,'2019-08-21 15:10:59',849.854000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12471,8,8,'2019-08-21 15:10:59',850.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 (12472,8,8,'2019-08-21 15:10:59',851.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 (12473,8,8,'2019-08-21 15:10:59',851.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 (12474,8,8,'2019-08-21 15:10:59',851.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 (12475,8,8,'2019-08-21 15:10:59',852.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 (12476,8,8,'2019-08-21 15:10:59',853.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 (12477,8,8,'2019-08-21 15:10:59',854.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 (12478,8,8,'2019-08-21 15:10:59',855.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 (12479,8,8,'2019-08-21 15:10:59',855.633000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12480,8,8,'2019-08-21 15:10:59',856.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 (12481,8,8,'2019-08-21 15:10:59',856.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 (12482,8,8,'2019-08-21 15:10:59',857.626000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12483,8,8,'2019-08-21 15:10:59',858.022000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12484,8,8,'2019-08-21 15:10:59',858.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 (12485,8,8,'2019-08-21 15:10:59',858.950000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12486,8,8,'2019-08-21 15:10:59',859.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 (12487,8,8,'2019-08-21 15:10:59',860.239000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12488,8,8,'2019-08-21 15:10:59',861.205000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12489,8,8,'2019-08-21 15:10:59',862.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 (12490,8,8,'2019-08-21 15:10:59',863.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 (12491,8,8,'2019-08-21 15:10:59',863.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 (12492,8,8,'2019-08-21 15:10:59',864.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 (12493,8,8,'2019-08-21 15:10:59',864.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 (12494,8,8,'2019-08-21 15:10:59',865.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 (12495,8,8,'2019-08-21 15:10:59',865.733000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12496,8,8,'2019-08-21 15:10:59',866.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 (12497,8,8,'2019-08-21 15:10:59',867.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 (12498,8,8,'2019-08-21 15:10:59',867.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 (12499,8,8,'2019-08-21 15:10:59',868.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 (12500,8,8,'2019-08-21 15:10:59',869.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 (12501,8,8,'2019-08-21 15:10:59',869.979000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12502,8,8,'2019-08-21 15:10:59',870.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 (12503,8,8,'2019-08-21 15:10:59',871.123000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12504,8,8,'2019-08-21 15:10:59',871.693000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12505,8,8,'2019-08-21 15:10:59',872.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 (12506,8,8,'2019-08-21 15:10:59',872.659000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12507,8,8,'2019-08-21 15:10:59',873.625000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12508,8,8,'2019-08-21 15:10:59',874.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 (12509,8,8,'2019-08-21 15:10:59',874.945000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12510,8,8,'2019-08-21 15:10:59',875.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 (12511,8,8,'2019-08-21 15:10:59',876.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 (12512,8,8,'2019-08-21 15:10:59',877.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 (12513,8,8,'2019-08-21 15:10:59',877.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 (12514,8,8,'2019-08-21 15:10:59',878.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 (12515,8,8,'2019-08-21 15:10:59',878.952000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12516,8,8,'2019-08-21 15:10:59',879.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 (12517,8,8,'2019-08-21 15:10:59',880.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 (12518,8,8,'2019-08-21 15:10:59',880.977000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12519,8,8,'2019-08-21 15:10:59',881.566000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12520,8,8,'2019-08-21 15:10:59',882.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 (12521,8,8,'2019-08-21 15:10:59',883.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 (12522,8,8,'2019-08-21 15:10:59',884.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 (12523,8,8,'2019-08-21 15:10:59',884.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 (12524,8,8,'2019-08-21 15:10:59',884.862000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12525,8,8,'2019-08-21 15:10:59',885.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 (12526,8,8,'2019-08-21 15:10:59',886.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 (12527,8,8,'2019-08-21 15:10:59',887.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 (12528,8,8,'2019-08-21 15:10:59',888.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 (12529,8,8,'2019-08-21 15:10:59',888.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 (12530,8,8,'2019-08-21 15:10:59',889.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 (12531,8,8,'2019-08-21 15:10:59',890.240000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12532,8,8,'2019-08-21 15:10:59',891.072000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12533,8,8,'2019-08-21 15:10:59',891.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 (12534,8,8,'2019-08-21 15:10:59',892.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 (12535,8,8,'2019-08-21 15:10:59',892.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 (12536,8,8,'2019-08-21 15:10:59',893.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 (12537,8,8,'2019-08-21 15:10:59',894.369000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12538,8,8,'2019-08-21 15:10:59',895.268000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12539,8,8,'2019-08-21 15:10:59',895.660000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12540,8,8,'2019-08-21 15:10:59',896.117000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12541,8,8,'2019-08-21 15:10:59',896.518000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12542,8,8,'2019-08-21 15:10:59',896.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 (12543,8,8,'2019-08-21 15:10:59',897.715000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12544,8,8,'2019-08-21 15:10:59',898.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 (12545,8,8,'2019-08-21 15:10:59',899.297000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12546,8,8,'2019-08-21 15:10:59',899.674000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12547,8,8,'2019-08-21 15:10:59',900.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 (12548,8,8,'2019-08-21 15:10:59',900.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 (12549,8,8,'2019-08-21 15:10:59',901.111000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12550,8,8,'2019-08-21 15:10:59',902.077000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12551,8,8,'2019-08-21 15:10:59',903.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 (12552,8,8,'2019-08-21 15:10:59',903.941000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12553,8,8,'2019-08-21 15:10:59',904.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 (12554,8,8,'2019-08-21 15:10:59',905.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 (12555,8,8,'2019-08-21 15:10:59',906.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 (12556,8,8,'2019-08-21 15:10:59',906.705000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12557,8,8,'2019-08-21 15:10:59',907.471000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12558,8,8,'2019-08-21 15:10:59',907.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 (12559,8,8,'2019-08-21 15:10:59',908.387000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12560,8,8,'2019-08-21 15:10:59',908.821000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12561,8,8,'2019-08-21 15:10:59',909.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 (12562,8,8,'2019-08-21 15:10:59',910.068000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12563,8,8,'2019-08-21 15:10:59',911.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 (12564,8,8,'2019-08-21 15:10:59',911.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 (12565,8,8,'2019-08-21 15:10:59',912.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 (12566,8,8,'2019-08-21 15:10:59',912.998000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12567,8,8,'2019-08-21 15:10:59',913.931000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12568,8,8,'2019-08-21 15:10:59',914.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 (12569,8,8,'2019-08-21 15:10:59',915.695000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12570,8,8,'2019-08-21 15:10:59',916.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 (12571,8,8,'2019-08-21 15:10:59',916.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 (12572,8,8,'2019-08-21 15:10:59',916.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 (12573,8,8,'2019-08-21 15:10:59',917.311000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12574,8,8,'2019-08-21 15:10:59',918.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 (12575,8,8,'2019-08-21 15:10:59',918.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 (12576,8,8,'2019-08-21 15:10:59',919.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 (12577,8,8,'2019-08-21 15:10:59',919.791000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12578,8,8,'2019-08-21 15:10:59',920.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 (12579,8,8,'2019-08-21 15:10:59',921.639000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12580,8,8,'2019-08-21 15:10:59',922.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 (12581,8,8,'2019-08-21 15:10:59',922.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 (12582,8,8,'2019-08-21 15:10:59',923.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 (12583,8,8,'2019-08-21 15:10:59',924.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 (12584,8,8,'2019-08-21 15:10:59',925.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 (12585,8,8,'2019-08-21 15:10:59',925.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 (12586,8,8,'2019-08-21 15:10:59',926.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 (12587,8,8,'2019-08-21 15:10:59',926.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 (12588,8,8,'2019-08-21 15:10:59',927.683000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12589,8,8,'2019-08-21 15:10:59',928.682000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12590,8,8,'2019-08-21 15:10:59',929.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 (12591,8,8,'2019-08-21 15:10:59',929.514000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12592,8,8,'2019-08-21 15:10:59',930.463000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12593,8,8,'2019-08-21 15:10:59',931.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 (12594,8,8,'2019-08-21 15:10:59',931.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 (12595,8,8,'2019-08-21 15:10:59',932.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 (12596,8,8,'2019-08-21 15:10:59',933.109000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12597,8,8,'2019-08-21 15:10:59',933.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 (12598,8,8,'2019-08-21 15:10:59',934.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 (12599,8,8,'2019-08-21 15:10:59',942.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 (12600,8,8,'2019-08-21 15:10:59',942.887000,0.000000,NULL,NULL,NULL,NULL,'e-198',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12601,8,8,'2019-08-21 15:10:59',960.316000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12602,8,8,'2019-08-21 15:10:59',961.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 (12603,8,8,'2019-08-21 15:10:59',962.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 (12604,8,8,'2019-08-21 15:10:59',962.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 (12605,8,8,'2019-08-21 15:10:59',963.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 (12606,8,8,'2019-08-21 15:10:59',964.064000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12607,8,8,'2019-08-21 15:10:59',964.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 (12608,8,8,'2019-08-21 15:10:59',965.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 (12609,8,8,'2019-08-21 15:10:59',965.677000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12610,8,8,'2019-08-21 15:10:59',966.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 (12611,8,8,'2019-08-21 15:10:59',967.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 (12612,8,8,'2019-08-21 15:10:59',968.290000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12613,8,8,'2019-08-21 15:10:59',969.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 (12614,8,8,'2019-08-21 15:10:59',969.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 (12615,8,8,'2019-08-21 15:10:59',970.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 (12616,8,8,'2019-08-21 15:10:59',970.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 (12617,8,8,'2019-08-21 15:10:59',971.054000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12618,8,8,'2019-08-21 15:10:59',971.970000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12619,8,8,'2019-08-21 15:10:59',972.952000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12620,8,8,'2019-08-21 15:10:59',973.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 (12621,8,8,'2019-08-21 15:10:59',973.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 (12622,8,8,'2019-08-21 15:10:59',974.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 (12623,8,8,'2019-08-21 15:10:59',975.683000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12624,8,8,'2019-08-21 15:10:59',976.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 (12625,8,8,'2019-08-21 15:10:59',976.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 (12626,8,8,'2019-08-21 15:10:59',977.280000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12627,8,8,'2019-08-21 15:10:59',978.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 (12628,8,8,'2019-08-21 15:10:59',978.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 (12629,8,8,'2019-08-21 15:10:59',979.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 (12630,8,8,'2019-08-21 15:10:59',980.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 (12631,8,8,'2019-08-21 15:10:59',980.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 (12632,8,8,'2019-08-21 15:10:59',981.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 (12633,8,8,'2019-08-21 15:10:59',981.609000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12634,8,8,'2019-08-21 15:10:59',982.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 (12635,8,8,'2019-08-21 15:10:59',982.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 (12636,8,8,'2019-08-21 15:10:59',983.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 (12637,8,8,'2019-08-21 15:10:59',983.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 (12638,8,8,'2019-08-21 15:10:59',984.239000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12639,8,8,'2019-08-21 15:10:59',985.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 (12640,8,8,'2019-08-21 15:10:59',986.071000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12641,8,8,'2019-08-21 15:10:59',986.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 (12642,8,8,'2019-08-21 15:10:59',987.952000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12643,8,8,'2019-08-21 15:10:59',988.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 (12644,8,8,'2019-08-21 15:10:59',989.667000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12645,8,8,'2019-08-21 15:10:59',990.134000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12646,8,8,'2019-08-21 15:10:59',990.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 (12647,8,8,'2019-08-21 15:10:59',990.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 (12648,8,8,'2019-08-21 15:10:59',991.549000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12649,8,8,'2019-08-21 15:10:59',992.480000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12650,8,8,'2019-08-21 15:10:59',993.099000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12651,8,8,'2019-08-21 15:10:59',993.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 (12652,8,8,'2019-08-21 15:10:59',994.195000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12653,8,8,'2019-08-21 15:10:59',995.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 (12654,8,8,'2019-08-21 15:10:59',995.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 (12655,8,8,'2019-08-21 15:10:59',995.960000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12656,8,8,'2019-08-21 15:10:59',996.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 (12657,8,8,'2019-08-21 15:10:59',997.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 (12658,8,8,'2019-08-21 15:10:59',998.040000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12659,8,8,'2019-08-21 15:10:59',998.607000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12660,8,8,'2019-08-21 15:10:59',999.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 (12661,8,8,'2019-08-21 15:10:59',1000.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 (12662,8,8,'2019-08-21 15:10:59',1001.121000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12663,8,8,'2019-08-21 15:10:59',1001.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 (12664,8,8,'2019-08-21 15:10:59',1001.954000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12665,8,8,'2019-08-21 15:10:59',1002.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 (12666,8,8,'2019-08-21 15:10:59',1003.284000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12667,8,8,'2019-08-21 15:10:59',1003.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 (12668,8,8,'2019-08-21 15:10:59',1004.801000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12669,8,8,'2019-08-21 15:10:59',1005.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 (12670,8,8,'2019-08-21 15:10:59',1006.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 (12671,8,8,'2019-08-21 15:10:59',1006.955000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12672,8,8,'2019-08-21 15:10:59',1007.515000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12673,8,8,'2019-08-21 15:10:59',1008.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 (12674,8,8,'2019-08-21 15:10:59',1009.312000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12675,8,8,'2019-08-21 15:10:59',1010.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 (12676,8,8,'2019-08-21 15:10:59',1011.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 (12677,8,8,'2019-08-21 15:10:59',1011.665000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12678,8,8,'2019-08-21 15:10:59',1012.093000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12679,8,8,'2019-08-21 15:10:59',1012.644000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12680,8,8,'2019-08-21 15:10:59',1012.858000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12681,8,8,'2019-08-21 15:10:59',1013.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 (12682,8,8,'2019-08-21 15:10:59',1014.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 (12683,8,8,'2019-08-21 15:10:59',1014.706000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12684,8,8,'2019-08-21 15:10:59',1015.572000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12685,8,8,'2019-08-21 15:10:59',1016.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 (12686,8,8,'2019-08-21 15:10:59',1017.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 (12687,8,8,'2019-08-21 15:10:59',1017.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 (12688,8,8,'2019-08-21 15:10:59',1018.169000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12689,8,8,'2019-08-21 15:10:59',1018.936000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12690,8,8,'2019-08-21 15:10:59',1019.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 (12691,8,8,'2019-08-21 15:10:59',1020.733000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12692,8,8,'2019-08-21 15:10:59',1021.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 (12693,8,8,'2019-08-21 15:10:59',1021.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 (12694,8,8,'2019-08-21 15:10:59',1022.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 (12695,8,8,'2019-08-21 15:10:59',1023.413000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12696,8,8,'2019-08-21 15:10:59',1023.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 (12697,8,8,'2019-08-21 15:10:59',1024.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 (12698,8,8,'2019-08-21 15:10:59',1025.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 (12699,8,8,'2019-08-21 15:10:59',1025.703000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12700,8,8,'2019-08-21 15:10:59',1026.077000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12701,8,8,'2019-08-21 15:10:59',1026.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 (12702,8,8,'2019-08-21 15:10:59',1027.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 (12703,8,8,'2019-08-21 15:10:59',1028.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 (12704,8,8,'2019-08-21 15:10:59',1028.607000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12705,8,8,'2019-08-21 15:10:59',1029.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 (12706,8,8,'2019-08-21 15:10:59',1030.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 (12707,8,8,'2019-08-21 15:10:59',1031.338000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12708,8,8,'2019-08-21 15:10:59',1031.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 (12709,8,8,'2019-08-21 15:10:59',1032.121000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12710,8,8,'2019-08-21 15:10:59',1032.672000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12711,8,8,'2019-08-21 15:10:59',1033.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 (12712,8,8,'2019-08-21 15:10:59',1034.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 (12713,8,8,'2019-08-21 15:10:59',1034.834000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12714,8,8,'2019-08-21 15:10:59',1035.364000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12715,8,8,'2019-08-21 15:10:59',1035.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 (12716,8,8,'2019-08-21 15:10:59',1035.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 (12717,8,8,'2019-08-21 15:10:59',1036.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 (12718,8,8,'2019-08-21 15:10:59',1037.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 (12719,8,8,'2019-08-21 15:10:59',1038.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 (12720,8,8,'2019-08-21 15:10:59',1039.363000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12721,8,8,'2019-08-21 15:10:59',1040.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 (12722,8,8,'2019-08-21 15:10:59',1041.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 (12723,8,8,'2019-08-21 15:10:59',1041.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 (12724,8,8,'2019-08-21 15:10:59',1042.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 (12725,8,8,'2019-08-21 15:10:59',1042.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 (12726,8,8,'2019-08-21 15:10:59',1043.841000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12727,8,8,'2019-08-21 15:10:59',1044.707000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12728,8,8,'2019-08-21 15:10:59',1045.087000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12729,8,8,'2019-08-21 15:10:59',1045.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 (12730,8,8,'2019-08-21 15:10:59',1046.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 (12731,8,8,'2019-08-21 15:10:59',1047.504000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12732,8,8,'2019-08-21 15:10:59',1047.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 (12733,8,8,'2019-08-21 15:10:59',1048.453000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12734,8,8,'2019-08-21 15:10:59',1049.235000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12735,8,8,'2019-08-21 15:10:59',1049.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 (12736,8,8,'2019-08-21 15:10:59',1050.234000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12737,8,8,'2019-08-21 15:10:59',1051.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 (12738,8,8,'2019-08-21 15:10:59',1051.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 (12739,8,8,'2019-08-21 15:10:59',1052.049000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12740,8,8,'2019-08-21 15:10:59',1052.981000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12741,8,8,'2019-08-21 15:10:59',1053.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 (12742,8,8,'2019-08-21 15:10:59',1054.579000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12743,8,8,'2019-08-21 15:10:59',1054.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 (12744,8,8,'2019-08-21 15:10:59',1055.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 (12745,8,8,'2019-08-21 15:10:59',1056.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 (12746,8,8,'2019-08-21 15:10:59',1057.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 (12747,8,8,'2019-08-21 15:10:59',1058.042000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12748,8,8,'2019-08-21 15:10:59',1058.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 (12749,8,8,'2019-08-21 15:10:59',1058.908000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12750,8,8,'2019-08-21 15:10:59',1059.296000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12751,8,8,'2019-08-21 15:10:59',1059.724000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12752,8,8,'2019-08-21 15:10:59',1060.623000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12753,8,8,'2019-08-21 15:10:59',1061.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 (12754,8,8,'2019-08-21 15:10:59',1062.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 (12755,8,8,'2019-08-21 15:10:59',1062.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 (12756,8,8,'2019-08-21 15:10:59',1063.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 (12757,8,8,'2019-08-21 15:10:59',1064.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 (12758,8,8,'2019-08-21 15:10:59',1064.409000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12759,8,8,'2019-08-21 15:10:59',1065.052000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12760,8,8,'2019-08-21 15:10:59',1065.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 (12761,8,8,'2019-08-21 15:10:59',1066.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 (12762,8,8,'2019-08-21 15:10:59',1067.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 (12763,8,8,'2019-08-21 15:10:59',1067.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 (12764,8,8,'2019-08-21 15:10:59',1068.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 (12765,8,8,'2019-08-21 15:10:59',1069.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 (12766,8,8,'2019-08-21 15:10:59',1070.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 (12767,8,8,'2019-08-21 15:10:59',1070.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 (12768,8,8,'2019-08-21 15:10:59',1071.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 (12769,8,8,'2019-08-21 15:10:59',1072.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 (12770,8,8,'2019-08-21 15:10:59',1073.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 (12771,8,8,'2019-08-21 15:10:59',1073.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 (12772,8,8,'2019-08-21 15:10:59',1073.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 (12773,8,8,'2019-08-21 15:10:59',1074.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 (12774,8,8,'2019-08-21 15:10:59',1075.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 (12775,8,8,'2019-08-21 15:10:59',1076.655000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12776,8,8,'2019-08-21 15:10:59',1076.985000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12777,8,8,'2019-08-21 15:10:59',1077.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 (12778,8,8,'2019-08-21 15:10:59',1078.486000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12779,8,8,'2019-08-21 15:10:59',1079.469000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12780,8,8,'2019-08-21 15:10:59',1080.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 (12781,8,8,'2019-08-21 15:10:59',1081.084000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12782,8,8,'2019-08-21 15:10:59',1081.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 (12783,8,8,'2019-08-21 15:10:59',1081.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 (12784,8,8,'2019-08-21 15:10:59',1082.300000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12785,8,8,'2019-08-21 15:10:59',1082.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 (12786,8,8,'2019-08-21 15:10:59',1083.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 (12787,8,8,'2019-08-21 15:10:59',1083.954000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12788,8,8,'2019-08-21 15:10:59',1084.431000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12789,8,8,'2019-08-21 15:10:59',1084.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 (12790,8,8,'2019-08-21 15:10:59',1085.279000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12791,8,8,'2019-08-21 15:10:59',1086.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 (12792,8,8,'2019-08-21 15:10:59',1086.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 (12793,8,8,'2019-08-21 15:10:59',1087.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 (12794,8,8,'2019-08-21 15:10:59',1088.059000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12795,8,8,'2019-08-21 15:10:59',1088.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 (12796,8,8,'2019-08-21 15:10:59',1089.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 (12797,8,8,'2019-08-21 15:10:59',1090.457000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12798,8,8,'2019-08-21 15:10:59',1090.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 (12799,8,8,'2019-08-21 15:10:59',1091.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 (12800,8,8,'2019-08-21 15:10:59',1092.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 (12801,8,8,'2019-08-21 15:10:59',1093.337000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12802,8,8,'2019-08-21 15:10:59',1093.676000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12803,8,8,'2019-08-21 15:10:59',1094.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 (12804,8,8,'2019-08-21 15:10:59',1094.653000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12805,8,8,'2019-08-21 15:10:59',1095.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 (12806,8,8,'2019-08-21 15:10:59',1095.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 (12807,8,8,'2019-08-21 15:10:59',1096.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 (12808,8,8,'2019-08-21 15:10:59',1097.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 (12809,8,8,'2019-08-21 15:10:59',1098.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 (12810,8,8,'2019-08-21 15:10:59',1099.061000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12811,8,8,'2019-08-21 15:10:59',1099.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 (12812,8,8,'2019-08-21 15:10:59',1100.279000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12813,8,8,'2019-08-21 15:10:59',1101.162000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12814,8,8,'2019-08-21 15:10:59',1101.512000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12815,8,8,'2019-08-21 15:10:59',1101.928000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12816,8,8,'2019-08-21 15:10:59',1102.710000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12817,8,8,'2019-08-21 15:10:59',1103.576000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12818,8,8,'2019-08-21 15:10:59',1103.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 (12819,8,8,'2019-08-21 15:10:59',1104.458000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12820,8,8,'2019-08-21 15:10:59',1105.274000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12821,8,8,'2019-08-21 15:10:59',1106.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 (12822,8,8,'2019-08-21 15:10:59',1106.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 (12823,8,8,'2019-08-21 15:10:59',1107.056000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12824,8,8,'2019-08-21 15:10:59',1107.871000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12825,8,8,'2019-08-21 15:10:59',1108.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 (12826,8,8,'2019-08-21 15:10:59',1109.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 (12827,8,8,'2019-08-21 15:10:59',1110.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 (12828,8,8,'2019-08-21 15:10:59',1110.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 (12829,8,8,'2019-08-21 15:10:59',1111.435000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12830,8,8,'2019-08-21 15:10:59',1111.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 (12831,8,8,'2019-08-21 15:10:59',1112.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 (12832,8,8,'2019-08-21 15:10:59',1113.148000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12833,8,8,'2019-08-21 15:10:59',1114.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 (12834,8,8,'2019-08-21 15:10:59',1114.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 (12835,8,8,'2019-08-21 15:10:59',1115.663000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12836,8,8,'2019-08-21 15:10:59',1116.044000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12837,8,8,'2019-08-21 15:10:59',1116.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 (12838,8,8,'2019-08-21 15:10:59',1117.328000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12839,8,8,'2019-08-21 15:10:59',1118.094000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12840,8,8,'2019-08-21 15:10:59',1118.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 (12841,8,8,'2019-08-21 15:10:59',1118.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 (12842,8,8,'2019-08-21 15:10:59',1119.392000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12843,8,8,'2019-08-21 15:10:59',1119.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 (12844,8,8,'2019-08-21 15:10:59',1120.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 (12845,8,8,'2019-08-21 15:10:59',1121.706000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12846,8,8,'2019-08-21 15:10:59',1122.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 (12847,8,8,'2019-08-21 15:10:59',1122.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 (12848,8,8,'2019-08-21 15:10:59',1123.504000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12849,8,8,'2019-08-21 15:10:59',1124.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 (12850,8,8,'2019-08-21 15:10:59',1124.797000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12851,8,8,'2019-08-21 15:10:59',1125.235000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12852,8,8,'2019-08-21 15:10:59',1126.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 (12853,8,8,'2019-08-21 15:10:59',1126.950000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12854,8,8,'2019-08-21 15:10:59',1127.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 (12855,8,8,'2019-08-21 15:10:59',1127.750000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12856,8,8,'2019-08-21 15:10:59',1128.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 (12857,8,8,'2019-08-21 15:10:59',1129.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 (12858,8,8,'2019-08-21 15:10:59',1130.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 (12859,8,8,'2019-08-21 15:10:59',1131.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 (12860,8,8,'2019-08-21 15:10:59',1132.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 (12861,8,8,'2019-08-21 15:10:59',1132.521000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12862,8,8,'2019-08-21 15:10:59',1132.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 (12863,8,8,'2019-08-21 15:10:59',1133.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 (12864,8,8,'2019-08-21 15:10:59',1134.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 (12865,8,8,'2019-08-21 15:10:59',1134.659000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12866,8,8,'2019-08-21 15:10:59',1135.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 (12867,8,8,'2019-08-21 15:10:59',1136.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 (12868,8,8,'2019-08-21 15:10:59',1136.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 (12869,8,8,'2019-08-21 15:10:59',1137.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 (12870,8,8,'2019-08-21 15:10:59',1137.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 (12871,8,8,'2019-08-21 15:10:59',1138.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 (12872,8,8,'2019-08-21 15:10:59',1138.971000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12873,8,8,'2019-08-21 15:10:59',1139.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 (12874,8,8,'2019-08-21 15:10:59',1140.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 (12875,8,8,'2019-08-21 15:10:59',1141.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 (12876,8,8,'2019-08-21 15:10:59',1141.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 (12877,8,8,'2019-08-21 15:10:59',1142.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 (12878,8,8,'2019-08-21 15:10:59',1142.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 (12879,8,8,'2019-08-21 15:10:59',1143.216000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12880,8,8,'2019-08-21 15:10:59',1144.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 (12881,8,8,'2019-08-21 15:10:59',1145.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 (12882,8,8,'2019-08-21 15:10:59',1146.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 (12883,8,8,'2019-08-21 15:10:59',1146.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 (12884,8,8,'2019-08-21 15:10:59',1147.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 (12885,8,8,'2019-08-21 15:10:59',1147.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 (12886,8,8,'2019-08-21 15:10:59',1148.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 (12887,8,8,'2019-08-21 15:10:59',1148.960000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12888,8,8,'2019-08-21 15:10:59',1149.593000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12889,8,8,'2019-08-21 15:10:59',1150.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 (12890,8,8,'2019-08-21 15:10:59',1150.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 (12891,8,8,'2019-08-21 15:10:59',1151.308000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12892,8,8,'2019-08-21 15:10:59',1152.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 (12893,8,8,'2019-08-21 15:10:59',1153.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 (12894,8,8,'2019-08-21 15:10:59',1154.171000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12895,8,8,'2019-08-21 15:10:59',1154.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 (12896,8,8,'2019-08-21 15:10:59',1154.937000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12897,8,8,'2019-08-21 15:10:59',1155.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 (12898,8,8,'2019-08-21 15:10:59',1156.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 (12899,8,8,'2019-08-21 15:10:59',1156.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 (12900,8,8,'2019-08-21 15:10:59',1157.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 (12901,8,8,'2019-08-21 15:10:59',1158.566000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12902,8,8,'2019-08-21 15:10:59',1159.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 (12903,8,8,'2019-08-21 15:10:59',1159.852000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12904,8,8,'2019-08-21 15:10:59',1160.414000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12905,8,8,'2019-08-21 15:10:59',1161.396000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12906,8,8,'2019-08-21 15:10:59',1162.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 (12907,8,8,'2019-08-21 15:10:59',1163.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 (12908,8,8,'2019-08-21 15:10:59',1164.127000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12909,8,8,'2019-08-21 15:10:59',1164.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 (12910,8,8,'2019-08-21 15:10:59',1164.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 (12911,8,8,'2019-08-21 15:10:59',1165.398000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12912,8,8,'2019-08-21 15:10:59',1165.858000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12913,8,8,'2019-08-21 15:10:59',1166.807000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12914,8,8,'2019-08-21 15:10:59',1167.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 (12915,8,8,'2019-08-21 15:10:59',1167.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 (12916,8,8,'2019-08-21 15:10:59',1168.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 (12917,8,8,'2019-08-21 15:10:59',1169.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 (12918,8,8,'2019-08-21 15:10:59',1170.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 (12919,8,8,'2019-08-21 15:10:59',1170.744000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12920,8,8,'2019-08-21 15:10:59',1171.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 (12921,8,8,'2019-08-21 15:10:59',1172.068000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12922,8,8,'2019-08-21 15:10:59',1172.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 (12923,8,8,'2019-08-21 15:10:59',1173.265000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12924,8,8,'2019-08-21 15:10:59',1173.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 (12925,8,8,'2019-08-21 15:10:59',1174.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 (12926,8,8,'2019-08-21 15:10:59',1175.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 (12927,8,8,'2019-08-21 15:10:59',1175.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 (12928,8,8,'2019-08-21 15:10:59',1176.180000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12929,8,8,'2019-08-21 15:10:59',1177.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 (12930,8,8,'2019-08-21 15:10:59',1178.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 (12931,8,8,'2019-08-21 15:10:59',1179.061000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12932,8,8,'2019-08-21 15:10:59',1179.447000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12933,8,8,'2019-08-21 15:10:59',1179.992000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12934,8,8,'2019-08-21 15:10:59',1180.991000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12935,8,8,'2019-08-21 15:10:59',1181.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 (12936,8,8,'2019-08-21 15:10:59',1181.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 (12937,8,8,'2019-08-21 15:10:59',1182.723000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12938,8,8,'2019-08-21 15:10:59',1183.722000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12939,8,8,'2019-08-21 15:10:59',1184.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 (12940,8,8,'2019-08-21 15:10:59',1185.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 (12941,8,8,'2019-08-21 15:10:59',1185.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 (12942,8,8,'2019-08-21 15:10:59',1186.069000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12943,8,8,'2019-08-21 15:10:59',1186.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 (12944,8,8,'2019-08-21 15:10:59',1186.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 (12945,8,8,'2019-08-21 15:10:59',1187.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 (12946,8,8,'2019-08-21 15:10:59',1188.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 (12947,8,8,'2019-08-21 15:10:59',1189.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 (12948,8,8,'2019-08-21 15:10:59',1190.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 (12949,8,8,'2019-08-21 15:10:59',1190.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 (12950,8,8,'2019-08-21 15:10:59',1190.924000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12951,8,8,'2019-08-21 15:10:59',1191.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 (12952,8,8,'2019-08-21 15:10:59',1192.129000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12953,8,8,'2019-08-21 15:10:59',1193.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 (12954,8,8,'2019-08-21 15:10:59',1193.495000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12955,8,8,'2019-08-21 15:10:59',1193.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 (12956,8,8,'2019-08-21 15:10:59',1194.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 (12957,8,8,'2019-08-21 15:10:59',1195.659000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12958,8,8,'2019-08-21 15:10:59',1196.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 (12959,8,8,'2019-08-21 15:10:59',1196.491000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12960,8,8,'2019-08-21 15:10:59',1197.407000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12961,8,8,'2019-08-21 15:10:59',1198.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 (12962,8,8,'2019-08-21 15:10:59',1199.122000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12963,8,8,'2019-08-21 15:10:59',1199.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 (12964,8,8,'2019-08-21 15:10:59',1199.921000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12965,8,8,'2019-08-21 15:10:59',1200.753000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12966,8,8,'2019-08-21 15:10:59',1201.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 (12967,8,8,'2019-08-21 15:10:59',1201.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 (12968,8,8,'2019-08-21 15:10:59',1202.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 (12969,8,8,'2019-08-21 15:10:59',1203.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 (12970,8,8,'2019-08-21 15:10:59',1204.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 (12971,8,8,'2019-08-21 15:10:59',1205.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 (12972,8,8,'2019-08-21 15:10:59',1205.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 (12973,8,8,'2019-08-21 15:10:59',1206.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 (12974,8,8,'2019-08-21 15:10:59',1206.813000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12975,8,8,'2019-08-21 15:10:59',1207.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 (12976,8,8,'2019-08-21 15:10:59',1208.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 (12977,8,8,'2019-08-21 15:10:59',1208.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 (12978,8,8,'2019-08-21 15:10:59',1209.394000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12979,8,8,'2019-08-21 15:10:59',1209.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 (12980,8,8,'2019-08-21 15:10:59',1210.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 (12981,8,8,'2019-08-21 15:10:59',1210.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 (12982,8,8,'2019-08-21 15:10:59',1211.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 (12983,8,8,'2019-08-21 15:10:59',1211.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 (12984,8,8,'2019-08-21 15:10:59',1212.957000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12985,8,8,'2019-08-21 15:10:59',1213.723000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12986,8,8,'2019-08-21 15:10:59',1214.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 (12987,8,8,'2019-08-21 15:10:59',1214.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 (12988,8,8,'2019-08-21 15:10:59',1215.537000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12989,8,8,'2019-08-21 15:10:59',1216.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 (12990,8,8,'2019-08-21 15:10:59',1216.791000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12991,8,8,'2019-08-21 15:10:59',1217.535000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12992,8,8,'2019-08-21 15:10:59',1218.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 (12993,8,8,'2019-08-21 15:10:59',1219.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 (12994,8,8,'2019-08-21 15:10:59',1220.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 (12995,8,8,'2019-08-21 15:10:59',1221.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 (12996,8,8,'2019-08-21 15:10:59',1221.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 (12997,8,8,'2019-08-21 15:10:59',1221.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 (12998,8,8,'2019-08-21 15:10:59',1222.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 (12999,8,8,'2019-08-21 15:10:59',1223.512000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13000,8,8,'2019-08-21 15:10:59',1223.881000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13001,9,9,'2019-08-21 15:11:15',21.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 (13002,9,9,'2019-08-21 15:11:15',22.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 (13003,9,9,'2019-08-21 15:11:15',22.497000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13004,9,9,'2019-08-21 15:11:15',23.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 (13005,9,9,'2019-08-21 15:11:15',24.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 (13006,9,9,'2019-08-21 15:11:15',25.044000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13007,9,9,'2019-08-21 15:11:15',25.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 (13008,9,9,'2019-08-21 15:11:15',25.859000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13009,9,9,'2019-08-21 15:11:15',26.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 (13010,9,9,'2019-08-21 15:11:15',27.724000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13011,9,9,'2019-08-21 15:11:15',28.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 (13012,9,9,'2019-08-21 15:11:15',29.037000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13013,9,9,'2019-08-21 15:11:15',29.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 (13014,9,9,'2019-08-21 15:11:15',30.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 (13015,9,9,'2019-08-21 15:11:15',31.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 (13016,9,9,'2019-08-21 15:11:15',32.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 (13017,9,9,'2019-08-21 15:11:15',33.218000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13018,9,9,'2019-08-21 15:11:15',34.051000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13019,9,9,'2019-08-21 15:11:15',34.933000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13020,9,9,'2019-08-21 15:11:15',35.865000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13021,9,9,'2019-08-21 15:11:15',36.134000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13022,9,9,'2019-08-21 15:11:15',36.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 (13023,9,9,'2019-08-21 15:11:15',37.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 (13024,9,9,'2019-08-21 15:11:15',37.729000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13025,9,9,'2019-08-21 15:11:15',38.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 (13026,9,9,'2019-08-21 15:11:15',39.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 (13027,9,9,'2019-08-21 15:11:15',40.040000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13028,9,9,'2019-08-21 15:11:15',40.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 (13029,9,9,'2019-08-21 15:11:15',40.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 (13030,9,9,'2019-08-21 15:11:15',41.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 (13031,9,9,'2019-08-21 15:11:15',42.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 (13032,9,9,'2019-08-21 15:11:15',42.990000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13033,9,9,'2019-08-21 15:11:15',43.973000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13034,9,9,'2019-08-21 15:11:15',44.371000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13035,9,9,'2019-08-21 15:11:15',44.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 (13036,9,9,'2019-08-21 15:11:15',45.017000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13037,9,9,'2019-08-21 15:11:15',45.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 (13038,9,9,'2019-08-21 15:11:15',46.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 (13039,9,9,'2019-08-21 15:11:15',46.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 (13040,9,9,'2019-08-21 15:11:15',47.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 (13041,9,9,'2019-08-21 15:11:15',48.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 (13042,9,9,'2019-08-21 15:11:15',49.001000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13043,9,9,'2019-08-21 15:11:15',49.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 (13044,9,9,'2019-08-21 15:11:15',50.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 (13045,9,9,'2019-08-21 15:11:15',51.531000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13046,9,9,'2019-08-21 15:11:15',51.881000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13047,9,9,'2019-08-21 15:11:15',52.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 (13048,9,9,'2019-08-21 15:11:15',52.759000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13049,9,9,'2019-08-21 15:11:15',53.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 (13050,9,9,'2019-08-21 15:11:15',53.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 (13051,9,9,'2019-08-21 15:11:15',54.078000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13052,9,9,'2019-08-21 15:11:15',54.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 (13053,9,9,'2019-08-21 15:11:15',55.760000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13054,9,9,'2019-08-21 15:11:15',56.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 (13055,9,9,'2019-08-21 15:11:15',56.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 (13056,9,9,'2019-08-21 15:11:15',57.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 (13057,9,9,'2019-08-21 15:11:15',58.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 (13058,9,9,'2019-08-21 15:11:15',59.390000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13059,9,9,'2019-08-21 15:11:15',60.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 (13060,9,9,'2019-08-21 15:11:15',61.171000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13061,9,9,'2019-08-21 15:11:15',61.541000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13062,9,9,'2019-08-21 15:11:15',62.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 (13063,9,9,'2019-08-21 15:11:15',62.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 (13064,9,9,'2019-08-21 15:11:15',63.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 (13065,9,9,'2019-08-21 15:11:15',63.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 (13066,9,9,'2019-08-21 15:11:15',64.650000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13067,9,9,'2019-08-21 15:11:15',65.003000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13068,9,9,'2019-08-21 15:11:15',65.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 (13069,9,9,'2019-08-21 15:11:15',65.841000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13070,9,9,'2019-08-21 15:11:15',66.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 (13071,9,9,'2019-08-21 15:11:15',67.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 (13072,9,9,'2019-08-21 15:11:15',68.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 (13073,9,9,'2019-08-21 15:11:15',69.295000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13074,9,9,'2019-08-21 15:11:15',69.707000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13075,9,9,'2019-08-21 15:11:15',70.228000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13076,9,9,'2019-08-21 15:11:15',71.093000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13077,9,9,'2019-08-21 15:11:15',71.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 (13078,9,9,'2019-08-21 15:11:15',72.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 (13079,9,9,'2019-08-21 15:11:15',72.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 (13080,9,9,'2019-08-21 15:11:15',73.790000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13081,9,9,'2019-08-21 15:11:15',74.623000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13082,9,9,'2019-08-21 15:11:15',75.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 (13083,9,9,'2019-08-21 15:11:15',76.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 (13084,9,9,'2019-08-21 15:11:15',77.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 (13085,9,9,'2019-08-21 15:11:15',77.904000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13086,9,9,'2019-08-21 15:11:15',78.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 (13087,9,9,'2019-08-21 15:11:15',79.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 (13088,9,9,'2019-08-21 15:11:15',79.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 (13089,9,9,'2019-08-21 15:11:15',80.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 (13090,9,9,'2019-08-21 15:11:15',80.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 (13091,9,9,'2019-08-21 15:11:15',81.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 (13092,9,9,'2019-08-21 15:11:15',82.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 (13093,9,9,'2019-08-21 15:11:15',83.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 (13094,9,9,'2019-08-21 15:11:15',83.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 (13095,9,9,'2019-08-21 15:11:15',84.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 (13096,9,9,'2019-08-21 15:11:15',84.920000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13097,9,9,'2019-08-21 15:11:15',85.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 (13098,9,9,'2019-08-21 15:11:15',86.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 (13099,9,9,'2019-08-21 15:11:15',86.575000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13100,9,9,'2019-08-21 15:11:15',86.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 (13101,9,9,'2019-08-21 15:11:15',87.759000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13102,9,9,'2019-08-21 15:11:15',88.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 (13103,9,9,'2019-08-21 15:11:15',89.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 (13104,9,9,'2019-08-21 15:11:15',89.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 (13105,9,9,'2019-08-21 15:11:15',90.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 (13106,9,9,'2019-08-21 15:11:15',91.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 (13107,9,9,'2019-08-21 15:11:15',91.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 (13108,9,9,'2019-08-21 15:11:15',92.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 (13109,9,9,'2019-08-21 15:11:15',93.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 (13110,9,9,'2019-08-21 15:11:15',93.391000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13111,9,9,'2019-08-21 15:11:15',93.985000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13112,9,9,'2019-08-21 15:11:15',94.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 (13113,9,9,'2019-08-21 15:11:15',95.683000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13114,9,9,'2019-08-21 15:11:15',96.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 (13115,9,9,'2019-08-21 15:11:15',96.482000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13116,9,9,'2019-08-21 15:11:15',97.298000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13117,9,9,'2019-08-21 15:11:15',98.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 (13118,9,9,'2019-08-21 15:11:15',98.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 (13119,9,9,'2019-08-21 15:11:15',99.096000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13120,9,9,'2019-08-21 15:11:15',99.879000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13121,9,9,'2019-08-21 15:11:15',100.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 (13122,9,9,'2019-08-21 15:11:15',101.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 (13123,9,9,'2019-08-21 15:11:15',102.509000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13124,9,9,'2019-08-21 15:11:15',102.827000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13125,9,9,'2019-08-21 15:11:15',103.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 (13126,9,9,'2019-08-21 15:11:15',103.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 (13127,9,9,'2019-08-21 15:11:15',104.257000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13128,9,9,'2019-08-21 15:11:15',105.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 (13129,9,9,'2019-08-21 15:11:15',105.822000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13130,9,9,'2019-08-21 15:11:15',106.188000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13131,9,9,'2019-08-21 15:11:15',106.638000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13132,9,9,'2019-08-21 15:11:15',107.653000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13133,9,9,'2019-08-21 15:11:15',108.669000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13134,9,9,'2019-08-21 15:11:15',109.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 (13135,9,9,'2019-08-21 15:11:15',109.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 (13136,9,9,'2019-08-21 15:11:15',110.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 (13137,9,9,'2019-08-21 15:11:15',111.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 (13138,9,9,'2019-08-21 15:11:15',112.016000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13139,9,9,'2019-08-21 15:11:15',112.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 (13140,9,9,'2019-08-21 15:11:15',113.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 (13141,9,9,'2019-08-21 15:11:15',113.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 (13142,9,9,'2019-08-21 15:11:15',114.122000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13143,9,9,'2019-08-21 15:11:15',114.612000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13144,9,9,'2019-08-21 15:11:15',115.578000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13145,9,9,'2019-08-21 15:11:15',116.577000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13146,9,9,'2019-08-21 15:11:15',117.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 (13147,9,9,'2019-08-21 15:11:15',118.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 (13148,9,9,'2019-08-21 15:11:15',119.240000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13149,9,9,'2019-08-21 15:11:15',119.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 (13150,9,9,'2019-08-21 15:11:15',120.123000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13151,9,9,'2019-08-21 15:11:15',120.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 (13152,9,9,'2019-08-21 15:11:15',121.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 (13153,9,9,'2019-08-21 15:11:15',121.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 (13154,9,9,'2019-08-21 15:11:15',122.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 (13155,9,9,'2019-08-21 15:11:15',123.146000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13156,9,9,'2019-08-21 15:11:15',123.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 (13157,9,9,'2019-08-21 15:11:15',123.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 (13158,9,9,'2019-08-21 15:11:15',124.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 (13159,9,9,'2019-08-21 15:11:15',125.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 (13160,9,9,'2019-08-21 15:11:15',126.267000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13161,9,9,'2019-08-21 15:11:15',127.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 (13162,9,9,'2019-08-21 15:11:15',127.965000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13163,9,9,'2019-08-21 15:11:15',128.254000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13164,9,9,'2019-08-21 15:11:15',128.813000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13165,9,9,'2019-08-21 15:11:15',129.763000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13166,9,9,'2019-08-21 15:11:15',130.628000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13167,9,9,'2019-08-21 15:11:15',131.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 (13168,9,9,'2019-08-21 15:11:15',131.808000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13169,9,9,'2019-08-21 15:11:15',132.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 (13170,9,9,'2019-08-21 15:11:15',133.126000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13171,9,9,'2019-08-21 15:11:15',133.564000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13172,9,9,'2019-08-21 15:11:15',133.991000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13173,9,9,'2019-08-21 15:11:15',134.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 (13174,9,9,'2019-08-21 15:11:15',134.907000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13175,9,9,'2019-08-21 15:11:15',135.673000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13176,9,9,'2019-08-21 15:11:15',136.672000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13177,9,9,'2019-08-21 15:11:15',137.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 (13178,9,9,'2019-08-21 15:11:15',138.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 (13179,9,9,'2019-08-21 15:11:15',139.202000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13180,9,9,'2019-08-21 15:11:15',139.984000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13181,9,9,'2019-08-21 15:11:15',140.337000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13182,9,9,'2019-08-21 15:11:15',140.884000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13183,9,9,'2019-08-21 15:11:15',141.666000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13184,9,9,'2019-08-21 15:11:15',142.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 (13185,9,9,'2019-08-21 15:11:15',142.532000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13186,9,9,'2019-08-21 15:11:15',143.464000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13187,9,9,'2019-08-21 15:11:15',143.760000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13188,9,9,'2019-08-21 15:11:15',144.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 (13189,9,9,'2019-08-21 15:11:15',145.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 (13190,9,9,'2019-08-21 15:11:15',146.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 (13191,9,9,'2019-08-21 15:11:15',146.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 (13192,9,9,'2019-08-21 15:11:15',147.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 (13193,9,9,'2019-08-21 15:11:15',147.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 (13194,9,9,'2019-08-21 15:11:15',148.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 (13195,9,9,'2019-08-21 15:11:15',149.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 (13196,9,9,'2019-08-21 15:11:15',149.724000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13197,9,9,'2019-08-21 15:11:15',150.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 (13198,9,9,'2019-08-21 15:11:15',151.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 (13199,9,9,'2019-08-21 15:11:15',151.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 (13200,9,9,'2019-08-21 15:11:15',152.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 (13201,9,9,'2019-08-21 15:11:15',153.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 (13202,9,9,'2019-08-21 15:11:15',154.036000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13203,9,9,'2019-08-21 15:11:15',155.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 (13204,9,9,'2019-08-21 15:11:15',155.834000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13205,9,9,'2019-08-21 15:11:15',156.750000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13206,9,9,'2019-08-21 15:11:15',157.094000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13207,9,9,'2019-08-21 15:11:15',157.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 (13208,9,9,'2019-08-21 15:11:15',157.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 (13209,9,9,'2019-08-21 15:11:15',158.414000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13210,9,9,'2019-08-21 15:11:15',158.841000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13211,9,9,'2019-08-21 15:11:15',159.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 (13212,9,9,'2019-08-21 15:11:15',160.079000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13213,9,9,'2019-08-21 15:11:15',161.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 (13214,9,9,'2019-08-21 15:11:15',161.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 (13215,9,9,'2019-08-21 15:11:15',162.727000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13216,9,9,'2019-08-21 15:11:15',163.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 (13217,9,9,'2019-08-21 15:11:15',163.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 (13218,9,9,'2019-08-21 15:11:15',164.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 (13219,9,9,'2019-08-21 15:11:15',164.897000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13220,9,9,'2019-08-21 15:11:15',165.290000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13221,9,9,'2019-08-21 15:11:15',165.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 (13222,9,9,'2019-08-21 15:11:15',166.223000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13223,9,9,'2019-08-21 15:11:15',167.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 (13224,9,9,'2019-08-21 15:11:15',167.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 (13225,9,9,'2019-08-21 15:11:15',168.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 (13226,9,9,'2019-08-21 15:11:15',169.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 (13227,9,9,'2019-08-21 15:11:15',169.936000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13228,9,9,'2019-08-21 15:11:15',170.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 (13229,9,9,'2019-08-21 15:11:15',170.918000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13230,9,9,'2019-08-21 15:11:15',171.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 (13231,9,9,'2019-08-21 15:11:15',172.699000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13232,9,9,'2019-08-21 15:11:15',173.647000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13233,9,9,'2019-08-21 15:11:15',174.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 (13234,9,9,'2019-08-21 15:11:15',174.850000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13235,9,9,'2019-08-21 15:11:15',175.279000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13236,9,9,'2019-08-21 15:11:15',175.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 (13237,9,9,'2019-08-21 15:11:15',176.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 (13238,9,9,'2019-08-21 15:11:15',177.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 (13239,9,9,'2019-08-21 15:11:15',178.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 (13240,9,9,'2019-08-21 15:11:15',178.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 (13241,9,9,'2019-08-21 15:11:15',179.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 (13242,9,9,'2019-08-21 15:11:15',180.230000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13243,9,9,'2019-08-21 15:11:15',180.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 (13244,9,9,'2019-08-21 15:11:15',181.622000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13245,9,9,'2019-08-21 15:11:15',182.555000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13246,9,9,'2019-08-21 15:11:15',183.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 (13247,9,9,'2019-08-21 15:11:15',183.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 (13248,9,9,'2019-08-21 15:11:15',184.453000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13249,9,9,'2019-08-21 15:11:15',185.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 (13250,9,9,'2019-08-21 15:11:15',186.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 (13251,9,9,'2019-08-21 15:11:15',187.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 (13252,9,9,'2019-08-21 15:11:15',188.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 (13253,9,9,'2019-08-21 15:11:15',188.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 (13254,9,9,'2019-08-21 15:11:15',189.355000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13255,9,9,'2019-08-21 15:11:15',189.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 (13256,9,9,'2019-08-21 15:11:15',190.204000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13257,9,9,'2019-08-21 15:11:15',190.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 (13258,9,9,'2019-08-21 15:11:15',191.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 (13259,9,9,'2019-08-21 15:11:15',192.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 (13260,9,9,'2019-08-21 15:11:15',192.717000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13261,9,9,'2019-08-21 15:11:15',193.077000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13262,9,9,'2019-08-21 15:11:15',193.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 (13263,9,9,'2019-08-21 15:11:15',193.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 (13264,9,9,'2019-08-21 15:11:15',194.809000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13265,9,9,'2019-08-21 15:11:15',195.574000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13266,9,9,'2019-08-21 15:11:15',196.423000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13267,9,9,'2019-08-21 15:11:15',196.775000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13268,9,9,'2019-08-21 15:11:15',197.355000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13269,9,9,'2019-08-21 15:11:15',197.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 (13270,9,9,'2019-08-21 15:11:15',198.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 (13271,9,9,'2019-08-21 15:11:15',199.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 (13272,9,9,'2019-08-21 15:11:15',200.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 (13273,9,9,'2019-08-21 15:11:15',201.001000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13274,9,9,'2019-08-21 15:11:15',201.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 (13275,9,9,'2019-08-21 15:11:15',201.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 (13276,9,9,'2019-08-21 15:11:15',202.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 (13277,9,9,'2019-08-21 15:11:15',203.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 (13278,9,9,'2019-08-21 15:11:15',204.248000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13279,9,9,'2019-08-21 15:11:15',204.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 (13280,9,9,'2019-08-21 15:11:15',205.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 (13281,9,9,'2019-08-21 15:11:15',206.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 (13282,9,9,'2019-08-21 15:11:15',207.045000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13283,9,9,'2019-08-21 15:11:15',207.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 (13284,9,9,'2019-08-21 15:11:15',208.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 (13285,9,9,'2019-08-21 15:11:15',208.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 (13286,9,9,'2019-08-21 15:11:15',208.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 (13287,9,9,'2019-08-21 15:11:15',209.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 (13288,9,9,'2019-08-21 15:11:15',210.674000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13289,9,9,'2019-08-21 15:11:15',211.474000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13290,9,9,'2019-08-21 15:11:15',212.289000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13291,9,9,'2019-08-21 15:11:15',212.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 (13292,9,9,'2019-08-21 15:11:15',213.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 (13293,9,9,'2019-08-21 15:11:15',213.441000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13294,9,9,'2019-08-21 15:11:15',213.971000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13295,9,9,'2019-08-21 15:11:15',214.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 (13296,9,9,'2019-08-21 15:11:15',215.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 (13297,9,9,'2019-08-21 15:11:15',216.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 (13298,9,9,'2019-08-21 15:11:15',216.924000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13299,9,9,'2019-08-21 15:11:15',217.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 (13300,9,9,'2019-08-21 15:11:15',218.433000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13301,9,9,'2019-08-21 15:11:15',219.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 (13302,9,9,'2019-08-21 15:11:15',220.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 (13303,9,9,'2019-08-21 15:11:15',220.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 (13304,9,9,'2019-08-21 15:11:15',221.029000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13305,9,9,'2019-08-21 15:11:15',221.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 (13306,9,9,'2019-08-21 15:11:15',222.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 (13307,9,9,'2019-08-21 15:11:15',222.878000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13308,9,9,'2019-08-21 15:11:15',223.826000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13309,9,9,'2019-08-21 15:11:15',224.692000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13310,9,9,'2019-08-21 15:11:15',225.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 (13311,9,9,'2019-08-21 15:11:15',225.607000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13312,9,9,'2019-08-21 15:11:15',226.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 (13313,9,9,'2019-08-21 15:11:15',227.355000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13314,9,9,'2019-08-21 15:11:15',228.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 (13315,9,9,'2019-08-21 15:11:15',229.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 (13316,9,9,'2019-08-21 15:11:15',229.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 (13317,9,9,'2019-08-21 15:11:15',230.350000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13318,9,9,'2019-08-21 15:11:15',230.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 (13319,9,9,'2019-08-21 15:11:15',231.076000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13320,9,9,'2019-08-21 15:11:15',231.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 (13321,9,9,'2019-08-21 15:11:15',232.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 (13322,9,9,'2019-08-21 15:11:15',233.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 (13323,9,9,'2019-08-21 15:11:15',233.383000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13324,9,9,'2019-08-21 15:11:15',234.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 (13325,9,9,'2019-08-21 15:11:15',235.147000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13326,9,9,'2019-08-21 15:11:15',235.930000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13327,9,9,'2019-08-21 15:11:15',236.295000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13328,9,9,'2019-08-21 15:11:15',236.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 (13329,9,9,'2019-08-21 15:11:15',237.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 (13330,9,9,'2019-08-21 15:11:15',238.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 (13331,9,9,'2019-08-21 15:11:15',238.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 (13332,9,9,'2019-08-21 15:11:15',239.326000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13333,9,9,'2019-08-21 15:11:15',240.158000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13334,9,9,'2019-08-21 15:11:15',240.991000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13335,9,9,'2019-08-21 15:11:15',241.823000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13336,9,9,'2019-08-21 15:11:15',242.149000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13337,9,9,'2019-08-21 15:11:15',242.689000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13338,9,9,'2019-08-21 15:11:15',243.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 (13339,9,9,'2019-08-21 15:11:15',243.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 (13340,9,9,'2019-08-21 15:11:15',244.487000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13341,9,9,'2019-08-21 15:11:15',245.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 (13342,9,9,'2019-08-21 15:11:15',246.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 (13343,9,9,'2019-08-21 15:11:15',246.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 (13344,9,9,'2019-08-21 15:11:15',246.901000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13345,9,9,'2019-08-21 15:11:15',247.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 (13346,9,9,'2019-08-21 15:11:15',248.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 (13347,9,9,'2019-08-21 15:11:15',249.249000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13348,9,9,'2019-08-21 15:11:15',249.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 (13349,9,9,'2019-08-21 15:11:15',250.098000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13350,9,9,'2019-08-21 15:11:15',250.417000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13351,9,9,'2019-08-21 15:11:15',251.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 (13352,9,9,'2019-08-21 15:11:15',251.879000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13353,9,9,'2019-08-21 15:11:15',252.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 (13354,9,9,'2019-08-21 15:11:15',253.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 (13355,9,9,'2019-08-21 15:11:15',254.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 (13356,9,9,'2019-08-21 15:11:15',255.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 (13357,9,9,'2019-08-21 15:11:15',256.308000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13358,9,9,'2019-08-21 15:11:15',256.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 (13359,9,9,'2019-08-21 15:11:15',257.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 (13360,9,9,'2019-08-21 15:11:15',257.503000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13361,9,9,'2019-08-21 15:11:15',258.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 (13362,9,9,'2019-08-21 15:11:15',258.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 (13363,9,9,'2019-08-21 15:11:15',258.871000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13364,9,9,'2019-08-21 15:11:15',259.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 (13365,9,9,'2019-08-21 15:11:15',260.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 (13366,9,9,'2019-08-21 15:11:15',261.585000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13367,9,9,'2019-08-21 15:11:15',262.046000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13368,9,9,'2019-08-21 15:11:15',262.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 (13369,9,9,'2019-08-21 15:11:15',263.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 (13370,9,9,'2019-08-21 15:11:15',263.711000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13371,9,9,'2019-08-21 15:11:15',264.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 (13372,9,9,'2019-08-21 15:11:15',265.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 (13373,9,9,'2019-08-21 15:11:15',265.538000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13374,9,9,'2019-08-21 15:11:15',266.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 (13375,9,9,'2019-08-21 15:11:15',267.029000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13376,9,9,'2019-08-21 15:11:15',267.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 (13377,9,9,'2019-08-21 15:11:15',268.827000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13378,9,9,'2019-08-21 15:11:15',269.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 (13379,9,9,'2019-08-21 15:11:15',270.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 (13380,9,9,'2019-08-21 15:11:15',271.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 (13381,9,9,'2019-08-21 15:11:15',271.888000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13382,9,9,'2019-08-21 15:11:15',272.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 (13383,9,9,'2019-08-21 15:11:15',273.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 (13384,9,9,'2019-08-21 15:11:15',273.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 (13385,9,9,'2019-08-21 15:11:15',274.121000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13386,9,9,'2019-08-21 15:11:15',274.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 (13387,9,9,'2019-08-21 15:11:15',275.087000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13388,9,9,'2019-08-21 15:11:15',275.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 (13389,9,9,'2019-08-21 15:11:15',276.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 (13390,9,9,'2019-08-21 15:11:15',277.435000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13391,9,9,'2019-08-21 15:11:15',277.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 (13392,9,9,'2019-08-21 15:11:15',278.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 (13393,9,9,'2019-08-21 15:11:15',279.249000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13394,9,9,'2019-08-21 15:11:15',280.198000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13395,9,9,'2019-08-21 15:11:15',280.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 (13396,9,9,'2019-08-21 15:11:15',281.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 (13397,9,9,'2019-08-21 15:11:15',281.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 (13398,9,9,'2019-08-21 15:11:15',282.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 (13399,9,9,'2019-08-21 15:11:15',283.811000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13400,9,9,'2019-08-21 15:11:15',284.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 (13401,9,9,'2019-08-21 15:11:15',300.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 (13402,9,9,'2019-08-21 15:11:15',324.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 (13403,9,9,'2019-08-21 15:11:15',325.336000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13404,9,9,'2019-08-21 15:11:15',326.234000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13405,9,9,'2019-08-21 15:11:15',326.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 (13406,9,9,'2019-08-21 15:11:15',327.084000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13407,9,9,'2019-08-21 15:11:15',327.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 (13408,9,9,'2019-08-21 15:11:15',327.982000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13409,9,9,'2019-08-21 15:11:15',328.849000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13410,9,9,'2019-08-21 15:11:15',329.864000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13411,9,9,'2019-08-21 15:11:15',330.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 (13412,9,9,'2019-08-21 15:11:15',330.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 (13413,9,9,'2019-08-21 15:11:15',331.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 (13414,9,9,'2019-08-21 15:11:15',332.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 (13415,9,9,'2019-08-21 15:11:15',332.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 (13416,9,9,'2019-08-21 15:11:15',333.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 (13417,9,9,'2019-08-21 15:11:15',334.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 (13418,9,9,'2019-08-21 15:11:15',335.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 (13419,9,9,'2019-08-21 15:11:15',335.957000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13420,9,9,'2019-08-21 15:11:15',336.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 (13421,9,9,'2019-08-21 15:11:15',337.622000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13422,9,9,'2019-08-21 15:11:15',338.149000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13423,9,9,'2019-08-21 15:11:15',338.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 (13424,9,9,'2019-08-21 15:11:15',339.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 (13425,9,9,'2019-08-21 15:11:15',339.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 (13426,9,9,'2019-08-21 15:11:15',340.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 (13427,9,9,'2019-08-21 15:11:15',341.302000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13428,9,9,'2019-08-21 15:11:15',342.150000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13429,9,9,'2019-08-21 15:11:15',342.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 (13430,9,9,'2019-08-21 15:11:15',343.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 (13431,9,9,'2019-08-21 15:11:15',343.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 (13432,9,9,'2019-08-21 15:11:15',344.598000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13433,9,9,'2019-08-21 15:11:15',345.044000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13434,9,9,'2019-08-21 15:11:15',345.464000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13435,9,9,'2019-08-21 15:11:15',345.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 (13436,9,9,'2019-08-21 15:11:15',346.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 (13437,9,9,'2019-08-21 15:11:15',347.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 (13438,9,9,'2019-08-21 15:11:15',348.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 (13439,9,9,'2019-08-21 15:11:15',348.648000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13440,9,9,'2019-08-21 15:11:15',349.359000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13441,9,9,'2019-08-21 15:11:15',350.176000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13442,9,9,'2019-08-21 15:11:15',351.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 (13443,9,9,'2019-08-21 15:11:15',351.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 (13444,9,9,'2019-08-21 15:11:15',352.839000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13445,9,9,'2019-08-21 15:11:15',353.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 (13446,9,9,'2019-08-21 15:11:15',354.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 (13447,9,9,'2019-08-21 15:11:15',354.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 (13448,9,9,'2019-08-21 15:11:15',355.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 (13449,9,9,'2019-08-21 15:11:15',355.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 (13450,9,9,'2019-08-21 15:11:15',356.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 (13451,9,9,'2019-08-21 15:11:15',357.135000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13452,9,9,'2019-08-21 15:11:15',358.133000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13453,9,9,'2019-08-21 15:11:15',358.470000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13454,9,9,'2019-08-21 15:11:15',359.132000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13455,9,9,'2019-08-21 15:11:15',359.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 (13456,9,9,'2019-08-21 15:11:15',360.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 (13457,9,9,'2019-08-21 15:11:15',360.863000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13458,9,9,'2019-08-21 15:11:15',361.779000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13459,9,9,'2019-08-21 15:11:15',362.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 (13460,9,9,'2019-08-21 15:11:15',362.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 (13461,9,9,'2019-08-21 15:11:15',363.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 (13462,9,9,'2019-08-21 15:11:15',364.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 (13463,9,9,'2019-08-21 15:11:15',364.759000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13464,9,9,'2019-08-21 15:11:15',365.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 (13465,9,9,'2019-08-21 15:11:15',366.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 (13466,9,9,'2019-08-21 15:11:15',367.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 (13467,9,9,'2019-08-21 15:11:15',367.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 (13468,9,9,'2019-08-21 15:11:15',368.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 (13469,9,9,'2019-08-21 15:11:15',368.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 (13470,9,9,'2019-08-21 15:11:15',369.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 (13471,9,9,'2019-08-21 15:11:15',370.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 (13472,9,9,'2019-08-21 15:11:15',370.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 (13473,9,9,'2019-08-21 15:11:15',371.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 (13474,9,9,'2019-08-21 15:11:15',372.484000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13475,9,9,'2019-08-21 15:11:15',372.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 (13476,9,9,'2019-08-21 15:11:15',373.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 (13477,9,9,'2019-08-21 15:11:15',373.642000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13478,9,9,'2019-08-21 15:11:15',374.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 (13479,9,9,'2019-08-21 15:11:15',374.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 (13480,9,9,'2019-08-21 15:11:15',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 (13481,9,9,'2019-08-21 15:11:15',376.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 (13482,9,9,'2019-08-21 15:11:15',377.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 (13483,9,9,'2019-08-21 15:11:15',378.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 (13484,9,9,'2019-08-21 15:11:15',378.444000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13485,9,9,'2019-08-21 15:11:15',379.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 (13486,9,9,'2019-08-21 15:11:15',380.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 (13487,9,9,'2019-08-21 15:11:15',380.728000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13488,9,9,'2019-08-21 15:11:15',381.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 (13489,9,9,'2019-08-21 15:11:15',382.023000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13490,9,9,'2019-08-21 15:11:15',383.022000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13491,9,9,'2019-08-21 15:11:15',383.872000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13492,9,9,'2019-08-21 15:11:15',384.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 (13493,9,9,'2019-08-21 15:11:15',385.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 (13494,9,9,'2019-08-21 15:11:15',385.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 (13495,9,9,'2019-08-21 15:11:15',386.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 (13496,9,9,'2019-08-21 15:11:15',387.269000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13497,9,9,'2019-08-21 15:11:15',387.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 (13498,9,9,'2019-08-21 15:11:15',388.101000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13499,9,9,'2019-08-21 15:11:15',389.050000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13500,9,9,'2019-08-21 15:11:15',389.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 (13501,9,9,'2019-08-21 15:11:15',389.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 (13502,9,9,'2019-08-21 15:11:15',390.848000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13503,9,9,'2019-08-21 15:11:15',391.747000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13504,9,9,'2019-08-21 15:11:15',392.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 (13505,9,9,'2019-08-21 15:11:15',392.933000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13506,9,9,'2019-08-21 15:11:15',393.611000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13507,9,9,'2019-08-21 15:11:15',394.032000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13508,9,9,'2019-08-21 15:11:15',394.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 (13509,9,9,'2019-08-21 15:11:15',395.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 (13510,9,9,'2019-08-21 15:11:15',395.749000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13511,9,9,'2019-08-21 15:11:15',396.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 (13512,9,9,'2019-08-21 15:11:15',397.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 (13513,9,9,'2019-08-21 15:11:15',397.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 (13514,9,9,'2019-08-21 15:11:15',398.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 (13515,9,9,'2019-08-21 15:11:15',399.755000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13516,9,9,'2019-08-21 15:11:15',400.604000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13517,9,9,'2019-08-21 15:11:15',400.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 (13518,9,9,'2019-08-21 15:11:15',401.503000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13519,9,9,'2019-08-21 15:11:15',402.418000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13520,9,9,'2019-08-21 15:11:15',402.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 (13521,9,9,'2019-08-21 15:11:15',403.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 (13522,9,9,'2019-08-21 15:11:15',404.166000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13523,9,9,'2019-08-21 15:11:15',405.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 (13524,9,9,'2019-08-21 15:11:15',405.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 (13525,9,9,'2019-08-21 15:11:15',406.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 (13526,9,9,'2019-08-21 15:11:15',407.104000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13527,9,9,'2019-08-21 15:11:15',407.679000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13528,9,9,'2019-08-21 15:11:15',408.044000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13529,9,9,'2019-08-21 15:11:15',408.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 (13530,9,9,'2019-08-21 15:11:15',409.410000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13531,9,9,'2019-08-21 15:11:15',409.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 (13532,9,9,'2019-08-21 15:11:15',410.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 (13533,9,9,'2019-08-21 15:11:15',411.325000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13534,9,9,'2019-08-21 15:11:15',412.124000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13535,9,9,'2019-08-21 15:11:15',413.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 (13536,9,9,'2019-08-21 15:11:15',413.973000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13537,9,9,'2019-08-21 15:11:15',414.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 (13538,9,9,'2019-08-21 15:11:15',414.938000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13539,9,9,'2019-08-21 15:11:15',415.332000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13540,9,9,'2019-08-21 15:11:15',415.903000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13541,9,9,'2019-08-21 15:11:15',416.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 (13542,9,9,'2019-08-21 15:11:15',417.718000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13543,9,9,'2019-08-21 15:11:15',418.017000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13544,9,9,'2019-08-21 15:11:15',418.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 (13545,9,9,'2019-08-21 15:11:15',419.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 (13546,9,9,'2019-08-21 15:11:15',420.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 (13547,9,9,'2019-08-21 15:11:15',420.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 (13548,9,9,'2019-08-21 15:11:15',421.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 (13549,9,9,'2019-08-21 15:11:15',421.914000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13550,9,9,'2019-08-21 15:11:15',422.206000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13551,9,9,'2019-08-21 15:11:15',422.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 (13552,9,9,'2019-08-21 15:11:15',423.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 (13553,9,9,'2019-08-21 15:11:15',424.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 (13554,9,9,'2019-08-21 15:11:15',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 (13555,9,9,'2019-08-21 15:11:15',425.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 (13556,9,9,'2019-08-21 15:11:15',426.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 (13557,9,9,'2019-08-21 15:11:15',427.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 (13558,9,9,'2019-08-21 15:11:15',427.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 (13559,9,9,'2019-08-21 15:11:15',428.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 (13560,9,9,'2019-08-21 15:11:15',428.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 (13561,9,9,'2019-08-21 15:11:15',429.639000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13562,9,9,'2019-08-21 15:11:15',430.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 (13563,9,9,'2019-08-21 15:11:15',431.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 (13564,9,9,'2019-08-21 15:11:15',431.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 (13565,9,9,'2019-08-21 15:11:15',432.020000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13566,9,9,'2019-08-21 15:11:15',432.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 (13567,9,9,'2019-08-21 15:11:15',433.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 (13568,9,9,'2019-08-21 15:11:15',434.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 (13569,9,9,'2019-08-21 15:11:15',435.208000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13570,9,9,'2019-08-21 15:11:15',435.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 (13571,9,9,'2019-08-21 15:11:15',436.564000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13572,9,9,'2019-08-21 15:11:15',437.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 (13573,9,9,'2019-08-21 15:11:15',438.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 (13574,9,9,'2019-08-21 15:11:15',438.495000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13575,9,9,'2019-08-21 15:11:15',439.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 (13576,9,9,'2019-08-21 15:11:15',439.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 (13577,9,9,'2019-08-21 15:11:15',440.360000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13578,9,9,'2019-08-21 15:11:15',441.209000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13579,9,9,'2019-08-21 15:11:15',442.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 (13580,9,9,'2019-08-21 15:11:15',442.907000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13581,9,9,'2019-08-21 15:11:15',443.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 (13582,9,9,'2019-08-21 15:11:15',443.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 (13583,9,9,'2019-08-21 15:11:15',444.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 (13584,9,9,'2019-08-21 15:11:15',444.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 (13585,9,9,'2019-08-21 15:11:15',445.421000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13586,9,9,'2019-08-21 15:11:15',446.304000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13587,9,9,'2019-08-21 15:11:15',447.069000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13588,9,9,'2019-08-21 15:11:15',448.002000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13589,9,9,'2019-08-21 15:11:15',448.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 (13590,9,9,'2019-08-21 15:11:15',448.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 (13591,9,9,'2019-08-21 15:11:15',449.700000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13592,9,9,'2019-08-21 15:11:15',450.649000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13593,9,9,'2019-08-21 15:11:15',450.976000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13594,9,9,'2019-08-21 15:11:15',451.415000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13595,9,9,'2019-08-21 15:11:15',451.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 (13596,9,9,'2019-08-21 15:11:15',452.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 (13597,9,9,'2019-08-21 15:11:15',453.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 (13598,9,9,'2019-08-21 15:11:15',454.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 (13599,9,9,'2019-08-21 15:11:15',454.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 (13600,9,9,'2019-08-21 15:11:15',455.235000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13601,9,9,'2019-08-21 15:11:15',455.776000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13602,9,9,'2019-08-21 15:11:15',456.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 (13603,9,9,'2019-08-21 15:11:15',457.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 (13604,9,9,'2019-08-21 15:11:15',458.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 (13605,9,9,'2019-08-21 15:11:15',459.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 (13606,9,9,'2019-08-21 15:11:15',459.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 (13607,9,9,'2019-08-21 15:11:15',460.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 (13608,9,9,'2019-08-21 15:11:15',460.747000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13609,9,9,'2019-08-21 15:11:15',461.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 (13610,9,9,'2019-08-21 15:11:15',462.104000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13611,9,9,'2019-08-21 15:11:15',462.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 (13612,9,9,'2019-08-21 15:11:15',463.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 (13613,9,9,'2019-08-21 15:11:15',464.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 (13614,9,9,'2019-08-21 15:11:15',464.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 (13615,9,9,'2019-08-21 15:11:15',465.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 (13616,9,9,'2019-08-21 15:11:15',466.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 (13617,9,9,'2019-08-21 15:11:15',466.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 (13618,9,9,'2019-08-21 15:11:15',467.480000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13619,9,9,'2019-08-21 15:11:15',468.263000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13620,9,9,'2019-08-21 15:11:15',469.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 (13621,9,9,'2019-08-21 15:11:15',469.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 (13622,9,9,'2019-08-21 15:11:15',469.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 (13623,9,9,'2019-08-21 15:11:15',470.777000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13624,9,9,'2019-08-21 15:11:15',471.084000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13625,9,9,'2019-08-21 15:11:15',471.793000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13626,9,9,'2019-08-21 15:11:15',472.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 (13627,9,9,'2019-08-21 15:11:15',473.374000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13628,9,9,'2019-08-21 15:11:15',474.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 (13629,9,9,'2019-08-21 15:11:15',475.155000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13630,9,9,'2019-08-21 15:11:15',476.121000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13631,9,9,'2019-08-21 15:11:15',476.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 (13632,9,9,'2019-08-21 15:11:15',476.903000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13633,9,9,'2019-08-21 15:11:15',477.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 (13634,9,9,'2019-08-21 15:11:15',477.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 (13635,9,9,'2019-08-21 15:11:15',478.251000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13636,9,9,'2019-08-21 15:11:15',478.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 (13637,9,9,'2019-08-21 15:11:15',479.400000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13638,9,9,'2019-08-21 15:11:15',480.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 (13639,9,9,'2019-08-21 15:11:15',480.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 (13640,9,9,'2019-08-21 15:11:15',481.332000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13641,9,9,'2019-08-21 15:11:15',482.147000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13642,9,9,'2019-08-21 15:11:15',483.113000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13643,9,9,'2019-08-21 15:11:15',483.946000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13644,9,9,'2019-08-21 15:11:15',484.911000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13645,9,9,'2019-08-21 15:11:15',485.297000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13646,9,9,'2019-08-21 15:11:15',485.777000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13647,9,9,'2019-08-21 15:11:15',486.760000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13648,9,9,'2019-08-21 15:11:15',487.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 (13649,9,9,'2019-08-21 15:11:15',487.608000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13650,9,9,'2019-08-21 15:11:15',488.407000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13651,9,9,'2019-08-21 15:11:15',488.749000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13652,9,9,'2019-08-21 15:11:15',489.257000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13653,9,9,'2019-08-21 15:11:15',490.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 (13654,9,9,'2019-08-21 15:11:15',491.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 (13655,9,9,'2019-08-21 15:11:15',491.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 (13656,9,9,'2019-08-21 15:11:15',491.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 (13657,9,9,'2019-08-21 15:11:15',492.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 (13658,9,9,'2019-08-21 15:11:15',493.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 (13659,9,9,'2019-08-21 15:11:15',494.784000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13660,9,9,'2019-08-21 15:11:15',495.068000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13661,9,9,'2019-08-21 15:11:15',495.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 (13662,9,9,'2019-08-21 15:11:15',496.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 (13663,9,9,'2019-08-21 15:11:15',496.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 (13664,9,9,'2019-08-21 15:11:15',497.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 (13665,9,9,'2019-08-21 15:11:15',498.280000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13666,9,9,'2019-08-21 15:11:15',499.213000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13667,9,9,'2019-08-21 15:11:15',500.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 (13668,9,9,'2019-08-21 15:11:15',500.488000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13669,9,9,'2019-08-21 15:11:15',501.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 (13670,9,9,'2019-08-21 15:11:15',501.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 (13671,9,9,'2019-08-21 15:11:15',502.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 (13672,9,9,'2019-08-21 15:11:15',503.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 (13673,9,9,'2019-08-21 15:11:15',503.972000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13674,9,9,'2019-08-21 15:11:15',504.474000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13675,9,9,'2019-08-21 15:11:15',504.900000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13676,9,9,'2019-08-21 15:11:15',505.406000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13677,9,9,'2019-08-21 15:11:15',505.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 (13678,9,9,'2019-08-21 15:11:15',506.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 (13679,9,9,'2019-08-21 15:11:15',507.171000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13680,9,9,'2019-08-21 15:11:15',508.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 (13681,9,9,'2019-08-21 15:11:15',509.068000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13682,9,9,'2019-08-21 15:11:15',509.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 (13683,9,9,'2019-08-21 15:11:15',510.933000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13684,9,9,'2019-08-21 15:11:15',511.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 (13685,9,9,'2019-08-21 15:11:15',512.138000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13686,9,9,'2019-08-21 15:11:15',512.765000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13687,9,9,'2019-08-21 15:11:15',513.696000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13688,9,9,'2019-08-21 15:11:15',514.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 (13689,9,9,'2019-08-21 15:11:15',514.579000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13690,9,9,'2019-08-21 15:11:15',515.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 (13691,9,9,'2019-08-21 15:11:15',516.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 (13692,9,9,'2019-08-21 15:11:15',516.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 (13693,9,9,'2019-08-21 15:11:15',517.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 (13694,9,9,'2019-08-21 15:11:15',517.976000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13695,9,9,'2019-08-21 15:11:15',518.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 (13696,9,9,'2019-08-21 15:11:15',518.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 (13697,9,9,'2019-08-21 15:11:15',519.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 (13698,9,9,'2019-08-21 15:11:15',520.656000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13699,9,9,'2019-08-21 15:11:15',521.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 (13700,9,9,'2019-08-21 15:11:15',521.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 (13701,9,9,'2019-08-21 15:11:15',522.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 (13702,9,9,'2019-08-21 15:11:15',522.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 (13703,9,9,'2019-08-21 15:11:15',523.036000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13704,9,9,'2019-08-21 15:11:15',523.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 (13705,9,9,'2019-08-21 15:11:15',524.635000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13706,9,9,'2019-08-21 15:11:15',525.450000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13707,9,9,'2019-08-21 15:11:15',526.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 (13708,9,9,'2019-08-21 15:11:15',527.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 (13709,9,9,'2019-08-21 15:11:15',527.502000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13710,9,9,'2019-08-21 15:11:15',527.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 (13711,9,9,'2019-08-21 15:11:15',528.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 (13712,9,9,'2019-08-21 15:11:15',528.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 (13713,9,9,'2019-08-21 15:11:15',529.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 (13714,9,9,'2019-08-21 15:11:15',530.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 (13715,9,9,'2019-08-21 15:11:15',530.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 (13716,9,9,'2019-08-21 15:11:15',531.444000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13717,9,9,'2019-08-21 15:11:15',532.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 (13718,9,9,'2019-08-21 15:11:15',533.408000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13719,9,9,'2019-08-21 15:11:15',534.391000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13720,9,9,'2019-08-21 15:11:15',535.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 (13721,9,9,'2019-08-21 15:11:15',535.567000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13722,9,9,'2019-08-21 15:11:15',536.172000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13723,9,9,'2019-08-21 15:11:15',536.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 (13724,9,9,'2019-08-21 15:11:15',536.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 (13725,9,9,'2019-08-21 15:11:15',537.920000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13726,9,9,'2019-08-21 15:11:15',538.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 (13727,9,9,'2019-08-21 15:11:15',538.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 (13728,9,9,'2019-08-21 15:11:15',539.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 (13729,9,9,'2019-08-21 15:11:15',540.584000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13730,9,9,'2019-08-21 15:11:15',541.434000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13731,9,9,'2019-08-21 15:11:15',542.415000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13732,9,9,'2019-08-21 15:11:15',543.364000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13733,9,9,'2019-08-21 15:11:15',544.163000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13734,9,9,'2019-08-21 15:11:15',544.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 (13735,9,9,'2019-08-21 15:11:15',544.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 (13736,9,9,'2019-08-21 15:11:15',545.895000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13737,9,9,'2019-08-21 15:11:15',546.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 (13738,9,9,'2019-08-21 15:11:15',546.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 (13739,9,9,'2019-08-21 15:11:15',547.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 (13740,9,9,'2019-08-21 15:11:15',547.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 (13741,9,9,'2019-08-21 15:11:15',548.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 (13742,9,9,'2019-08-21 15:11:15',549.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 (13743,9,9,'2019-08-21 15:11:15',549.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 (13744,9,9,'2019-08-21 15:11:15',550.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 (13745,9,9,'2019-08-21 15:11:15',551.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 (13746,9,9,'2019-08-21 15:11:15',552.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 (13747,9,9,'2019-08-21 15:11:15',552.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 (13748,9,9,'2019-08-21 15:11:15',553.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 (13749,9,9,'2019-08-21 15:11:15',554.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 (13750,9,9,'2019-08-21 15:11:15',554.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 (13751,9,9,'2019-08-21 15:11:15',555.685000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13752,9,9,'2019-08-21 15:11:15',556.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 (13753,9,9,'2019-08-21 15:11:15',556.916000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13754,9,9,'2019-08-21 15:11:15',557.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 (13755,9,9,'2019-08-21 15:11:15',557.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 (13756,9,9,'2019-08-21 15:11:15',558.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 (13757,9,9,'2019-08-21 15:11:15',558.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 (13758,9,9,'2019-08-21 15:11:15',559.514000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13759,9,9,'2019-08-21 15:11:15',560.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 (13760,9,9,'2019-08-21 15:11:15',561.295000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13761,9,9,'2019-08-21 15:11:15',562.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 (13762,9,9,'2019-08-21 15:11:15',563.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 (13763,9,9,'2019-08-21 15:11:15',564.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 (13764,9,9,'2019-08-21 15:11:15',564.599000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13765,9,9,'2019-08-21 15:11:15',565.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 (13766,9,9,'2019-08-21 15:11:15',565.567000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13767,9,9,'2019-08-21 15:11:15',566.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 (13768,9,9,'2019-08-21 15:11:15',566.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 (13769,9,9,'2019-08-21 15:11:15',567.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 (13770,9,9,'2019-08-21 15:11:15',568.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 (13771,9,9,'2019-08-21 15:11:15',569.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 (13772,9,9,'2019-08-21 15:11:15',570.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 (13773,9,9,'2019-08-21 15:11:15',571.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 (13774,9,9,'2019-08-21 15:11:15',571.644000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13775,9,9,'2019-08-21 15:11:15',572.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 (13776,9,9,'2019-08-21 15:11:15',572.542000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13777,9,9,'2019-08-21 15:11:15',573.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 (13778,9,9,'2019-08-21 15:11:15',574.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 (13779,9,9,'2019-08-21 15:11:15',574.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 (13780,9,9,'2019-08-21 15:11:15',575.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 (13781,9,9,'2019-08-21 15:11:15',576.116000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13782,9,9,'2019-08-21 15:11:15',576.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 (13783,9,9,'2019-08-21 15:11:15',576.964000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13784,9,9,'2019-08-21 15:11:15',577.644000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13785,9,9,'2019-08-21 15:11:15',578.426000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13786,9,9,'2019-08-21 15:11:15',579.242000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13787,9,9,'2019-08-21 15:11:15',579.639000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13788,9,9,'2019-08-21 15:11:15',580.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 (13789,9,9,'2019-08-21 15:11:15',581.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 (13790,9,9,'2019-08-21 15:11:15',582.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 (13791,9,9,'2019-08-21 15:11:15',582.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 (13792,9,9,'2019-08-21 15:11:15',582.921000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13793,9,9,'2019-08-21 15:11:15',583.870000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13794,9,9,'2019-08-21 15:11:15',584.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 (13795,9,9,'2019-08-21 15:11:15',585.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 (13796,9,9,'2019-08-21 15:11:15',586.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 (13797,9,9,'2019-08-21 15:11:15',587.566000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13798,9,9,'2019-08-21 15:11:15',588.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 (13799,9,9,'2019-08-21 15:11:15',588.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 (13800,9,9,'2019-08-21 15:11:15',589.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 (13801,9,9,'2019-08-21 15:11:15',589.753000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13802,9,9,'2019-08-21 15:11:15',602.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 (13803,9,9,'2019-08-21 15:11:15',626.723000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13804,9,9,'2019-08-21 15:11:15',627.488000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13805,9,9,'2019-08-21 15:11:15',628.287000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13806,9,9,'2019-08-21 15:11:15',629.053000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13807,9,9,'2019-08-21 15:11:15',629.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 (13808,9,9,'2019-08-21 15:11:15',629.936000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13809,9,9,'2019-08-21 15:11:15',630.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 (13810,9,9,'2019-08-21 15:11:15',631.037000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13811,9,9,'2019-08-21 15:11:15',631.584000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13812,9,9,'2019-08-21 15:11:15',631.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 (13813,9,9,'2019-08-21 15:11:15',632.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 (13814,9,9,'2019-08-21 15:11:15',633.165000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13815,9,9,'2019-08-21 15:11:15',633.980000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13816,9,9,'2019-08-21 15:11:15',634.258000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13817,9,9,'2019-08-21 15:11:15',634.880000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13818,9,9,'2019-08-21 15:11:15',635.829000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13819,9,9,'2019-08-21 15:11:15',636.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 (13820,9,9,'2019-08-21 15:11:15',637.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 (13821,9,9,'2019-08-21 15:11:15',637.871000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13822,9,9,'2019-08-21 15:11:15',638.359000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13823,9,9,'2019-08-21 15:11:15',639.342000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13824,9,9,'2019-08-21 15:11:15',640.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 (13825,9,9,'2019-08-21 15:11:15',641.239000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13826,9,9,'2019-08-21 15:11:15',641.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 (13827,9,9,'2019-08-21 15:11:15',642.155000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13828,9,9,'2019-08-21 15:11:15',642.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 (13829,9,9,'2019-08-21 15:11:15',643.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 (13830,9,9,'2019-08-21 15:11:15',643.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 (13831,9,9,'2019-08-21 15:11:15',643.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 (13832,9,9,'2019-08-21 15:11:15',644.619000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13833,9,9,'2019-08-21 15:11:15',645.568000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13834,9,9,'2019-08-21 15:11:15',646.400000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13835,9,9,'2019-08-21 15:11:15',647.383000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13836,9,9,'2019-08-21 15:11:15',648.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 (13837,9,9,'2019-08-21 15:11:15',649.197000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13838,9,9,'2019-08-21 15:11:15',650.180000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13839,9,9,'2019-08-21 15:11:15',650.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 (13840,9,9,'2019-08-21 15:11:15',651.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 (13841,9,9,'2019-08-21 15:11:15',651.861000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13842,9,9,'2019-08-21 15:11:15',652.296000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13843,9,9,'2019-08-21 15:11:15',652.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 (13844,9,9,'2019-08-21 15:11:15',653.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 (13845,9,9,'2019-08-21 15:11:15',654.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 (13846,9,9,'2019-08-21 15:11:15',655.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 (13847,9,9,'2019-08-21 15:11:15',656.106000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13848,9,9,'2019-08-21 15:11:15',656.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 (13849,9,9,'2019-08-21 15:11:15',656.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 (13850,9,9,'2019-08-21 15:11:15',657.334000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13851,9,9,'2019-08-21 15:11:15',657.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 (13852,9,9,'2019-08-21 15:11:15',658.303000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13853,9,9,'2019-08-21 15:11:15',658.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 (13854,9,9,'2019-08-21 15:11:15',659.653000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13855,9,9,'2019-08-21 15:11:15',660.552000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13856,9,9,'2019-08-21 15:11:15',661.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 (13857,9,9,'2019-08-21 15:11:15',661.916000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13858,9,9,'2019-08-21 15:11:15',662.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 (13859,9,9,'2019-08-21 15:11:15',663.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 (13860,9,9,'2019-08-21 15:11:15',663.981000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13861,9,9,'2019-08-21 15:11:15',664.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 (13862,9,9,'2019-08-21 15:11:15',665.490000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13863,9,9,'2019-08-21 15:11:15',665.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 (13864,9,9,'2019-08-21 15:11:15',666.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 (13865,9,9,'2019-08-21 15:11:15',666.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 (13866,9,9,'2019-08-21 15:11:15',667.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 (13867,9,9,'2019-08-21 15:11:15',668.394000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13868,9,9,'2019-08-21 15:11:15',669.176000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13869,9,9,'2019-08-21 15:11:15',670.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 (13870,9,9,'2019-08-21 15:11:15',670.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 (13871,9,9,'2019-08-21 15:11:15',671.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 (13872,9,9,'2019-08-21 15:11:15',672.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 (13873,9,9,'2019-08-21 15:11:15',672.938000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13874,9,9,'2019-08-21 15:11:15',673.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 (13875,9,9,'2019-08-21 15:11:15',673.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 (13876,9,9,'2019-08-21 15:11:15',674.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 (13877,9,9,'2019-08-21 15:11:15',674.969000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13878,9,9,'2019-08-21 15:11:15',675.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 (13879,9,9,'2019-08-21 15:11:15',675.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 (13880,9,9,'2019-08-21 15:11:15',676.268000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13881,9,9,'2019-08-21 15:11:15',677.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 (13882,9,9,'2019-08-21 15:11:15',677.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 (13883,9,9,'2019-08-21 15:11:15',678.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 (13884,9,9,'2019-08-21 15:11:15',679.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 (13885,9,9,'2019-08-21 15:11:15',679.765000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13886,9,9,'2019-08-21 15:11:15',680.746000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13887,9,9,'2019-08-21 15:11:15',681.729000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13888,9,9,'2019-08-21 15:11:15',682.528000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13889,9,9,'2019-08-21 15:11:15',683.394000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13890,9,9,'2019-08-21 15:11:15',683.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 (13891,9,9,'2019-08-21 15:11:15',684.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 (13892,9,9,'2019-08-21 15:11:15',685.292000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13893,9,9,'2019-08-21 15:11:15',685.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 (13894,9,9,'2019-08-21 15:11:15',686.257000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13895,9,9,'2019-08-21 15:11:15',687.173000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13896,9,9,'2019-08-21 15:11:15',688.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 (13897,9,9,'2019-08-21 15:11:15',688.425000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13898,9,9,'2019-08-21 15:11:15',689.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 (13899,9,9,'2019-08-21 15:11:15',689.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 (13900,9,9,'2019-08-21 15:11:15',690.652000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13901,9,9,'2019-08-21 15:11:15',691.585000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13902,9,9,'2019-08-21 15:11:15',691.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 (13903,9,9,'2019-08-21 15:11:15',692.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 (13904,9,9,'2019-08-21 15:11:15',693.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 (13905,9,9,'2019-08-21 15:11:15',693.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 (13906,9,9,'2019-08-21 15:11:15',694.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 (13907,9,9,'2019-08-21 15:11:15',695.514000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13908,9,9,'2019-08-21 15:11:15',696.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 (13909,9,9,'2019-08-21 15:11:15',697.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 (13910,9,9,'2019-08-21 15:11:15',698.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 (13911,9,9,'2019-08-21 15:11:15',698.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 (13912,9,9,'2019-08-21 15:11:15',698.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 (13913,9,9,'2019-08-21 15:11:15',699.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 (13914,9,9,'2019-08-21 15:11:15',699.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 (13915,9,9,'2019-08-21 15:11:15',700.625000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13916,9,9,'2019-08-21 15:11:15',701.474000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13917,9,9,'2019-08-21 15:11:15',702.307000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13918,9,9,'2019-08-21 15:11:15',703.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 (13919,9,9,'2019-08-21 15:11:15',703.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 (13920,9,9,'2019-08-21 15:11:15',704.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 (13921,9,9,'2019-08-21 15:11:15',704.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 (13922,9,9,'2019-08-21 15:11:15',705.171000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13923,9,9,'2019-08-21 15:11:15',705.853000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13924,9,9,'2019-08-21 15:11:15',706.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 (13925,9,9,'2019-08-21 15:11:15',707.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 (13926,9,9,'2019-08-21 15:11:15',708.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 (13927,9,9,'2019-08-21 15:11:15',709.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 (13928,9,9,'2019-08-21 15:11:15',709.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 (13929,9,9,'2019-08-21 15:11:15',710.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 (13930,9,9,'2019-08-21 15:11:15',710.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 (13931,9,9,'2019-08-21 15:11:15',711.246000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13932,9,9,'2019-08-21 15:11:15',712.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 (13933,9,9,'2019-08-21 15:11:15',712.489000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13934,9,9,'2019-08-21 15:11:15',713.111000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13935,9,9,'2019-08-21 15:11:15',713.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 (13936,9,9,'2019-08-21 15:11:15',714.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 (13937,9,9,'2019-08-21 15:11:15',715.194000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13938,9,9,'2019-08-21 15:11:15',715.642000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13939,9,9,'2019-08-21 15:11:15',716.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 (13940,9,9,'2019-08-21 15:11:15',717.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 (13941,9,9,'2019-08-21 15:11:15',717.920000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13942,9,9,'2019-08-21 15:11:15',718.488000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13943,9,9,'2019-08-21 15:11:15',719.421000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13944,9,9,'2019-08-21 15:11:15',720.187000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13945,9,9,'2019-08-21 15:11:15',720.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 (13946,9,9,'2019-08-21 15:11:15',721.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 (13947,9,9,'2019-08-21 15:11:15',721.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 (13948,9,9,'2019-08-21 15:11:15',722.718000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13949,9,9,'2019-08-21 15:11:15',723.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 (13950,9,9,'2019-08-21 15:11:15',723.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 (13951,9,9,'2019-08-21 15:11:15',724.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 (13952,9,9,'2019-08-21 15:11:15',724.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 (13953,9,9,'2019-08-21 15:11:15',725.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 (13954,9,9,'2019-08-21 15:11:15',726.181000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13955,9,9,'2019-08-21 15:11:15',727.013000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13956,9,9,'2019-08-21 15:11:15',727.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 (13957,9,9,'2019-08-21 15:11:15',727.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 (13958,9,9,'2019-08-21 15:11:15',728.811000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13959,9,9,'2019-08-21 15:11:15',729.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 (13960,9,9,'2019-08-21 15:11:15',729.626000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13961,9,9,'2019-08-21 15:11:15',730.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 (13962,9,9,'2019-08-21 15:11:15',731.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 (13963,9,9,'2019-08-21 15:11:15',732.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 (13964,9,9,'2019-08-21 15:11:15',733.056000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13965,9,9,'2019-08-21 15:11:15',733.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 (13966,9,9,'2019-08-21 15:11:15',734.293000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13967,9,9,'2019-08-21 15:11:15',734.754000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13968,9,9,'2019-08-21 15:11:15',735.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 (13969,9,9,'2019-08-21 15:11:15',736.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 (13970,9,9,'2019-08-21 15:11:15',736.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 (13971,9,9,'2019-08-21 15:11:15',737.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 (13972,9,9,'2019-08-21 15:11:15',738.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 (13973,9,9,'2019-08-21 15:11:15',739.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 (13974,9,9,'2019-08-21 15:11:15',739.522000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13975,9,9,'2019-08-21 15:11:15',740.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 (13976,9,9,'2019-08-21 15:11:15',740.798000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13977,9,9,'2019-08-21 15:11:15',741.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 (13978,9,9,'2019-08-21 15:11:15',741.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 (13979,9,9,'2019-08-21 15:11:15',742.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 (13980,9,9,'2019-08-21 15:11:15',743.035000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13981,9,9,'2019-08-21 15:11:15',743.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 (13982,9,9,'2019-08-21 15:11:15',744.244000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13983,9,9,'2019-08-21 15:11:15',744.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 (13984,9,9,'2019-08-21 15:11:15',745.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 (13985,9,9,'2019-08-21 15:11:15',745.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 (13986,9,9,'2019-08-21 15:11:15',746.658000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13987,9,9,'2019-08-21 15:11:15',747.507000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13988,9,9,'2019-08-21 15:11:15',747.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 (13989,9,9,'2019-08-21 15:11:15',748.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 (13990,9,9,'2019-08-21 15:11:15',749.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 (13991,9,9,'2019-08-21 15:11:15',750.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 (13992,9,9,'2019-08-21 15:11:15',750.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 (13993,9,9,'2019-08-21 15:11:15',751.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 (13994,9,9,'2019-08-21 15:11:15',752.060000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13995,9,9,'2019-08-21 15:11:15',752.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 (13996,9,9,'2019-08-21 15:11:15',753.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 (13997,9,9,'2019-08-21 15:11:15',754.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 (13998,9,9,'2019-08-21 15:11:15',755.332000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13999,9,9,'2019-08-21 15:11:15',755.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 (14000,9,9,'2019-08-21 15:11:15',756.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 (14001,9,9,'2019-08-21 15:11:15',756.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 (14002,9,9,'2019-08-21 15:11:15',757.130000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14003,9,9,'2019-08-21 15:11:15',758.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 (14004,9,9,'2019-08-21 15:11:15',758.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 (14005,9,9,'2019-08-21 15:11:15',759.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 (14006,9,9,'2019-08-21 15:11:15',760.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 (14007,9,9,'2019-08-21 15:11:15',760.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 (14008,9,9,'2019-08-21 15:11:15',761.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 (14009,9,9,'2019-08-21 15:11:15',761.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 (14010,9,9,'2019-08-21 15:11:15',762.641000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14011,9,9,'2019-08-21 15:11:15',763.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 (14012,9,9,'2019-08-21 15:11:15',764.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 (14013,9,9,'2019-08-21 15:11:15',764.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 (14014,9,9,'2019-08-21 15:11:15',765.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 (14015,9,9,'2019-08-21 15:11:15',765.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 (14016,9,9,'2019-08-21 15:11:15',766.137000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14017,9,9,'2019-08-21 15:11:15',767.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 (14018,9,9,'2019-08-21 15:11:15',768.018000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14019,9,9,'2019-08-21 15:11:15',768.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 (14020,9,9,'2019-08-21 15:11:15',769.239000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14021,9,9,'2019-08-21 15:11:15',769.833000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14022,9,9,'2019-08-21 15:11:15',770.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 (14023,9,9,'2019-08-21 15:11:15',771.681000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14024,9,9,'2019-08-21 15:11:15',772.463000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14025,9,9,'2019-08-21 15:11:15',772.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 (14026,9,9,'2019-08-21 15:11:15',773.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 (14027,9,9,'2019-08-21 15:11:15',774.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 (14028,9,9,'2019-08-21 15:11:15',775.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 (14029,9,9,'2019-08-21 15:11:15',775.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 (14030,9,9,'2019-08-21 15:11:15',776.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 (14031,9,9,'2019-08-21 15:11:15',776.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 (14032,9,9,'2019-08-21 15:11:15',777.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 (14033,9,9,'2019-08-21 15:11:15',777.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 (14034,9,9,'2019-08-21 15:11:15',778.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 (14035,9,9,'2019-08-21 15:11:15',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 (14036,9,9,'2019-08-21 15:11:15',780.504000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14037,9,9,'2019-08-21 15:11:15',780.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 (14038,9,9,'2019-08-21 15:11:15',781.370000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14039,9,9,'2019-08-21 15:11:15',782.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 (14040,9,9,'2019-08-21 15:11:15',782.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 (14041,9,9,'2019-08-21 15:11:15',783.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 (14042,9,9,'2019-08-21 15:11:15',784.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 (14043,9,9,'2019-08-21 15:11:15',784.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 (14044,9,9,'2019-08-21 15:11:15',785.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 (14045,9,9,'2019-08-21 15:11:15',785.766000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14046,9,9,'2019-08-21 15:11:15',786.697000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14047,9,9,'2019-08-21 15:11:15',787.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 (14048,9,9,'2019-08-21 15:11:15',787.904000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14049,9,9,'2019-08-21 15:11:15',788.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 (14050,9,9,'2019-08-21 15:11:15',789.178000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14051,9,9,'2019-08-21 15:11:15',790.160000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14052,9,9,'2019-08-21 15:11:15',791.109000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14053,9,9,'2019-08-21 15:11:15',791.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 (14054,9,9,'2019-08-21 15:11:15',792.758000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14055,9,9,'2019-08-21 15:11:15',793.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 (14056,9,9,'2019-08-21 15:11:15',794.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 (14057,9,9,'2019-08-21 15:11:15',794.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 (14058,9,9,'2019-08-21 15:11:15',794.939000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14059,9,9,'2019-08-21 15:11:15',795.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 (14060,9,9,'2019-08-21 15:11:15',796.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 (14061,9,9,'2019-08-21 15:11:15',797.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 (14062,9,9,'2019-08-21 15:11:15',797.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 (14063,9,9,'2019-08-21 15:11:15',797.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 (14064,9,9,'2019-08-21 15:11:15',798.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 (14065,9,9,'2019-08-21 15:11:15',798.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 (14066,9,9,'2019-08-21 15:11:15',799.400000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14067,9,9,'2019-08-21 15:11:15',800.183000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14068,9,9,'2019-08-21 15:11:15',801.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 (14069,9,9,'2019-08-21 15:11:15',801.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 (14070,9,9,'2019-08-21 15:11:15',802.764000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14071,9,9,'2019-08-21 15:11:15',803.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 (14072,9,9,'2019-08-21 15:11:15',803.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 (14073,9,9,'2019-08-21 15:11:15',803.974000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14074,9,9,'2019-08-21 15:11:15',804.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 (14075,9,9,'2019-08-21 15:11:15',805.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 (14076,9,9,'2019-08-21 15:11:15',805.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 (14077,9,9,'2019-08-21 15:11:15',806.176000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14078,9,9,'2019-08-21 15:11:15',806.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 (14079,9,9,'2019-08-21 15:11:15',807.791000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14080,9,9,'2019-08-21 15:11:15',808.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 (14081,9,9,'2019-08-21 15:11:15',808.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 (14082,9,9,'2019-08-21 15:11:15',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 (14083,9,9,'2019-08-21 15:11:15',810.488000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14084,9,9,'2019-08-21 15:11:15',811.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 (14085,9,9,'2019-08-21 15:11:15',811.767000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14086,9,9,'2019-08-21 15:11:15',812.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 (14087,9,9,'2019-08-21 15:11:15',812.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 (14088,9,9,'2019-08-21 15:11:15',813.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 (14089,9,9,'2019-08-21 15:11:15',813.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 (14090,9,9,'2019-08-21 15:11:15',814.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 (14091,9,9,'2019-08-21 15:11:15',815.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 (14092,9,9,'2019-08-21 15:11:15',816.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 (14093,9,9,'2019-08-21 15:11:15',816.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 (14094,9,9,'2019-08-21 15:11:15',817.397000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14095,9,9,'2019-08-21 15:11:15',818.413000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14096,9,9,'2019-08-21 15:11:15',818.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 (14097,9,9,'2019-08-21 15:11:15',819.212000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14098,9,9,'2019-08-21 15:11:15',820.161000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14099,9,9,'2019-08-21 15:11:15',821.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 (14100,9,9,'2019-08-21 15:11:15',821.926000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14101,9,9,'2019-08-21 15:11:15',822.315000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14102,9,9,'2019-08-21 15:11:15',822.791000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14103,9,9,'2019-08-21 15:11:15',823.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 (14104,9,9,'2019-08-21 15:11:15',823.674000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14105,9,9,'2019-08-21 15:11:15',824.606000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14106,9,9,'2019-08-21 15:11:15',825.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 (14107,9,9,'2019-08-21 15:11:15',826.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 (14108,9,9,'2019-08-21 15:11:15',827.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 (14109,9,9,'2019-08-21 15:11:15',828.252000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14110,9,9,'2019-08-21 15:11:15',829.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 (14111,9,9,'2019-08-21 15:11:15',829.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 (14112,9,9,'2019-08-21 15:11:15',830.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 (14113,9,9,'2019-08-21 15:11:15',830.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 (14114,9,9,'2019-08-21 15:11:15',831.259000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14115,9,9,'2019-08-21 15:11:15',831.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 (14116,9,9,'2019-08-21 15:11:15',832.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 (14117,9,9,'2019-08-21 15:11:15',833.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 (14118,9,9,'2019-08-21 15:11:15',833.944000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14119,9,9,'2019-08-21 15:11:15',834.512000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14120,9,9,'2019-08-21 15:11:15',835.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 (14121,9,9,'2019-08-21 15:11:15',835.761000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14122,9,9,'2019-08-21 15:11:15',836.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 (14123,9,9,'2019-08-21 15:11:15',837.060000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14124,9,9,'2019-08-21 15:11:15',837.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 (14125,9,9,'2019-08-21 15:11:15',838.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 (14126,9,9,'2019-08-21 15:11:15',838.961000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14127,9,9,'2019-08-21 15:11:15',839.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 (14128,9,9,'2019-08-21 15:11:15',840.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 (14129,9,9,'2019-08-21 15:11:15',840.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 (14130,9,9,'2019-08-21 15:11:15',841.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 (14131,9,9,'2019-08-21 15:11:15',842.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 (14132,9,9,'2019-08-21 15:11:15',843.353000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14133,9,9,'2019-08-21 15:11:15',844.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 (14134,9,9,'2019-08-21 15:11:15',844.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 (14135,9,9,'2019-08-21 15:11:15',845.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 (14136,9,9,'2019-08-21 15:11:15',845.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 (14137,9,9,'2019-08-21 15:11:15',846.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 (14138,9,9,'2019-08-21 15:11:15',846.981000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14139,9,9,'2019-08-21 15:11:15',847.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 (14140,9,9,'2019-08-21 15:11:15',848.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 (14141,9,9,'2019-08-21 15:11:15',849.197000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14142,9,9,'2019-08-21 15:11:15',849.529000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14143,9,9,'2019-08-21 15:11:15',849.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 (14144,9,9,'2019-08-21 15:11:15',850.312000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14145,9,9,'2019-08-21 15:11:15',851.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 (14146,9,9,'2019-08-21 15:11:15',851.977000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14147,9,9,'2019-08-21 15:11:15',852.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 (14148,9,9,'2019-08-21 15:11:15',853.607000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14149,9,9,'2019-08-21 15:11:15',854.424000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14150,9,9,'2019-08-21 15:11:15',855.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 (14151,9,9,'2019-08-21 15:11:15',855.339000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14152,9,9,'2019-08-21 15:11:15',856.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 (14153,9,9,'2019-08-21 15:11:15',856.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 (14154,9,9,'2019-08-21 15:11:15',857.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 (14155,9,9,'2019-08-21 15:11:15',858.069000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14156,9,9,'2019-08-21 15:11:15',858.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 (14157,9,9,'2019-08-21 15:11:15',859.052000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14158,9,9,'2019-08-21 15:11:15',859.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 (14159,9,9,'2019-08-21 15:11:15',860.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 (14160,9,9,'2019-08-21 15:11:15',861.582000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14161,9,9,'2019-08-21 15:11:15',862.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 (14162,9,9,'2019-08-21 15:11:15',862.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 (14163,9,9,'2019-08-21 15:11:15',863.264000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14164,9,9,'2019-08-21 15:11:15',863.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 (14165,9,9,'2019-08-21 15:11:15',864.279000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14166,9,9,'2019-08-21 15:11:15',864.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 (14167,9,9,'2019-08-21 15:11:15',865.179000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14168,9,9,'2019-08-21 15:11:15',866.178000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14169,9,9,'2019-08-21 15:11:15',867.176000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14170,9,9,'2019-08-21 15:11:15',868.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 (14171,9,9,'2019-08-21 15:11:15',868.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 (14172,9,9,'2019-08-21 15:11:15',869.657000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14173,9,9,'2019-08-21 15:11:15',870.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 (14174,9,9,'2019-08-21 15:11:15',870.971000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14175,9,9,'2019-08-21 15:11:15',871.372000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14176,9,9,'2019-08-21 15:11:15',872.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 (14177,9,9,'2019-08-21 15:11:15',872.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 (14178,9,9,'2019-08-21 15:11:15',873.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 (14179,9,9,'2019-08-21 15:11:15',874.119000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14180,9,9,'2019-08-21 15:11:15',874.483000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14181,9,9,'2019-08-21 15:11:15',874.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 (14182,9,9,'2019-08-21 15:11:15',875.700000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14183,9,9,'2019-08-21 15:11:15',876.683000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14184,9,9,'2019-08-21 15:11:15',877.515000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14185,9,9,'2019-08-21 15:11:15',878.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 (14186,9,9,'2019-08-21 15:11:15',878.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 (14187,9,9,'2019-08-21 15:11:15',879.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 (14188,9,9,'2019-08-21 15:11:15',879.672000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14189,9,9,'2019-08-21 15:11:15',879.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 (14190,9,9,'2019-08-21 15:11:15',880.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 (14191,9,9,'2019-08-21 15:11:15',881.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 (14192,9,9,'2019-08-21 15:11:15',882.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 (14193,9,9,'2019-08-21 15:11:15',883.347000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14194,9,9,'2019-08-21 15:11:15',883.642000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14195,9,9,'2019-08-21 15:11:15',884.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 (14196,9,9,'2019-08-21 15:11:15',884.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 (14197,9,9,'2019-08-21 15:11:15',885.323000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14198,9,9,'2019-08-21 15:11:15',886.105000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14199,9,9,'2019-08-21 15:11:15',887.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 (14200,9,9,'2019-08-21 15:11:15',887.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 (14201,9,9,'2019-08-21 15:11:15',887.937000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14202,9,9,'2019-08-21 15:11:15',888.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 (14203,9,9,'2019-08-21 15:11:15',900.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 (14204,9,9,'2019-08-21 15:11:15',925.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 (14205,9,9,'2019-08-21 15:11:15',926.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 (14206,9,9,'2019-08-21 15:11:15',927.176000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14207,9,9,'2019-08-21 15:11:15',928.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 (14208,9,9,'2019-08-21 15:11:15',929.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 (14209,9,9,'2019-08-21 15:11:15',929.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 (14210,9,9,'2019-08-21 15:11:15',929.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 (14211,9,9,'2019-08-21 15:11:15',930.010000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14212,9,9,'2019-08-21 15:11:15',930.639000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14213,9,9,'2019-08-21 15:11:15',931.538000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14214,9,9,'2019-08-21 15:11:15',931.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 (14215,9,9,'2019-08-21 15:11:15',932.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 (14216,9,9,'2019-08-21 15:11:15',933.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 (14217,9,9,'2019-08-21 15:11:15',934.252000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14218,9,9,'2019-08-21 15:11:15',934.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 (14219,9,9,'2019-08-21 15:11:15',935.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 (14220,9,9,'2019-08-21 15:11:15',936.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 (14221,9,9,'2019-08-21 15:11:15',936.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 (14222,9,9,'2019-08-21 15:11:15',937.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 (14223,9,9,'2019-08-21 15:11:15',938.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 (14224,9,9,'2019-08-21 15:11:15',939.165000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14225,9,9,'2019-08-21 15:11:15',939.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 (14226,9,9,'2019-08-21 15:11:15',940.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 (14227,9,9,'2019-08-21 15:11:15',940.694000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14228,9,9,'2019-08-21 15:11:15',941.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 (14229,9,9,'2019-08-21 15:11:15',942.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 (14230,9,9,'2019-08-21 15:11:15',942.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 (14231,9,9,'2019-08-21 15:11:15',943.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 (14232,9,9,'2019-08-21 15:11:15',944.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 (14233,9,9,'2019-08-21 15:11:15',944.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 (14234,9,9,'2019-08-21 15:11:15',945.173000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14235,9,9,'2019-08-21 15:11:15',945.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 (14236,9,9,'2019-08-21 15:11:15',946.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 (14237,9,9,'2019-08-21 15:11:15',947.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 (14238,9,9,'2019-08-21 15:11:15',947.870000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14239,9,9,'2019-08-21 15:11:15',948.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 (14240,9,9,'2019-08-21 15:11:15',949.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 (14241,9,9,'2019-08-21 15:11:15',949.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 (14242,9,9,'2019-08-21 15:11:15',950.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 (14243,9,9,'2019-08-21 15:11:15',951.416000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14244,9,9,'2019-08-21 15:11:15',952.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 (14245,9,9,'2019-08-21 15:11:15',953.114000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14246,9,9,'2019-08-21 15:11:15',954.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 (14247,9,9,'2019-08-21 15:11:15',954.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 (14248,9,9,'2019-08-21 15:11:15',954.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 (14249,9,9,'2019-08-21 15:11:15',955.695000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14250,9,9,'2019-08-21 15:11:15',956.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 (14251,9,9,'2019-08-21 15:11:15',957.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 (14252,9,9,'2019-08-21 15:11:15',957.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 (14253,9,9,'2019-08-21 15:11:15',958.259000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14254,9,9,'2019-08-21 15:11:15',958.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 (14255,9,9,'2019-08-21 15:11:15',959.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 (14256,9,9,'2019-08-21 15:11:15',960.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 (14257,9,9,'2019-08-21 15:11:15',960.855000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14258,9,9,'2019-08-21 15:11:15',961.639000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14259,9,9,'2019-08-21 15:11:15',962.130000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14260,9,9,'2019-08-21 15:11:15',962.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 (14261,9,9,'2019-08-21 15:11:15',963.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 (14262,9,9,'2019-08-21 15:11:15',963.644000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14263,9,9,'2019-08-21 15:11:15',964.036000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14264,9,9,'2019-08-21 15:11:15',964.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 (14265,9,9,'2019-08-21 15:11:15',964.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 (14266,9,9,'2019-08-21 15:11:15',965.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 (14267,9,9,'2019-08-21 15:11:15',966.649000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14268,9,9,'2019-08-21 15:11:15',967.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 (14269,9,9,'2019-08-21 15:11:15',968.531000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14270,9,9,'2019-08-21 15:11:15',968.994000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14271,9,9,'2019-08-21 15:11:15',969.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 (14272,9,9,'2019-08-21 15:11:15',970.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 (14273,9,9,'2019-08-21 15:11:15',971.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 (14274,9,9,'2019-08-21 15:11:15',971.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 (14275,9,9,'2019-08-21 15:11:15',972.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 (14276,9,9,'2019-08-21 15:11:15',973.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 (14277,9,9,'2019-08-21 15:11:15',973.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 (14278,9,9,'2019-08-21 15:11:15',973.975000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14279,9,9,'2019-08-21 15:11:15',974.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 (14280,9,9,'2019-08-21 15:11:15',975.890000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14281,9,9,'2019-08-21 15:11:15',976.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 (14282,9,9,'2019-08-21 15:11:15',977.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 (14283,9,9,'2019-08-21 15:11:15',977.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 (14284,9,9,'2019-08-21 15:11:15',978.604000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14285,9,9,'2019-08-21 15:11:15',978.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 (14286,9,9,'2019-08-21 15:11:15',979.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 (14287,9,9,'2019-08-21 15:11:15',980.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 (14288,9,9,'2019-08-21 15:11:15',981.101000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14289,9,9,'2019-08-21 15:11:15',982.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 (14290,9,9,'2019-08-21 15:11:15',982.948000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14291,9,9,'2019-08-21 15:11:15',983.247000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14292,9,9,'2019-08-21 15:11:15',983.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 (14293,9,9,'2019-08-21 15:11:15',984.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 (14294,9,9,'2019-08-21 15:11:15',985.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 (14295,9,9,'2019-08-21 15:11:15',986.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 (14296,9,9,'2019-08-21 15:11:15',986.790000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14297,9,9,'2019-08-21 15:11:15',987.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 (14298,9,9,'2019-08-21 15:11:15',987.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 (14299,9,9,'2019-08-21 15:11:15',988.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 (14300,9,9,'2019-08-21 15:11:15',989.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 (14301,9,9,'2019-08-21 15:11:15',990.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 (14302,9,9,'2019-08-21 15:11:15',990.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 (14303,9,9,'2019-08-21 15:11:15',991.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 (14304,9,9,'2019-08-21 15:11:15',991.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 (14305,9,9,'2019-08-21 15:11:15',992.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 (14306,9,9,'2019-08-21 15:11:15',992.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 (14307,9,9,'2019-08-21 15:11:15',993.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 (14308,9,9,'2019-08-21 15:11:15',994.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 (14309,9,9,'2019-08-21 15:11:15',995.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 (14310,9,9,'2019-08-21 15:11:15',996.417000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14311,9,9,'2019-08-21 15:11:15',997.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 (14312,9,9,'2019-08-21 15:11:15',998.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 (14313,9,9,'2019-08-21 15:11:15',998.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 (14314,9,9,'2019-08-21 15:11:15',999.064000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14315,9,9,'2019-08-21 15:11:15',999.357000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14316,9,9,'2019-08-21 15:11:15',1000.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 (14317,9,9,'2019-08-21 15:11:15',1000.796000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14318,9,9,'2019-08-21 15:11:15',1001.795000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14319,9,9,'2019-08-21 15:11:15',1002.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 (14320,9,9,'2019-08-21 15:11:15',1002.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 (14321,9,9,'2019-08-21 15:11:15',1003.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 (14322,9,9,'2019-08-21 15:11:15',1003.860000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14323,9,9,'2019-08-21 15:11:15',1004.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 (14324,9,9,'2019-08-21 15:11:15',1005.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 (14325,9,9,'2019-08-21 15:11:15',1006.173000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14326,9,9,'2019-08-21 15:11:15',1007.155000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14327,9,9,'2019-08-21 15:11:15',1007.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 (14328,9,9,'2019-08-21 15:11:15',1007.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 (14329,9,9,'2019-08-21 15:11:15',1008.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 (14330,9,9,'2019-08-21 15:11:15',1008.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 (14331,9,9,'2019-08-21 15:11:15',1009.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 (14332,9,9,'2019-08-21 15:11:15',1010.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 (14333,9,9,'2019-08-21 15:11:15',1011.584000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14334,9,9,'2019-08-21 15:11:15',1012.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 (14335,9,9,'2019-08-21 15:11:15',1012.350000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14336,9,9,'2019-08-21 15:11:15',1013.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 (14337,9,9,'2019-08-21 15:11:15',1013.470000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14338,9,9,'2019-08-21 15:11:15',1013.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 (14339,9,9,'2019-08-21 15:11:15',1014.964000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14340,9,9,'2019-08-21 15:11:15',1015.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 (14341,9,9,'2019-08-21 15:11:15',1016.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 (14342,9,9,'2019-08-21 15:11:15',1017.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 (14343,9,9,'2019-08-21 15:11:15',1018.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 (14344,9,9,'2019-08-21 15:11:15',1018.779000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14345,9,9,'2019-08-21 15:11:15',1019.309000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14346,9,9,'2019-08-21 15:11:15',1020.108000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14347,9,9,'2019-08-21 15:11:15',1020.425000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14348,9,9,'2019-08-21 15:11:15',1021.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 (14349,9,9,'2019-08-21 15:11:15',1021.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 (14350,9,9,'2019-08-21 15:11:15',1021.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 (14351,9,9,'2019-08-21 15:11:15',1022.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 (14352,9,9,'2019-08-21 15:11:15',1023.504000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14353,9,9,'2019-08-21 15:11:15',1024.304000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14354,9,9,'2019-08-21 15:11:15',1024.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 (14355,9,9,'2019-08-21 15:11:15',1025.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 (14356,9,9,'2019-08-21 15:11:15',1026.102000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14357,9,9,'2019-08-21 15:11:15',1026.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 (14358,9,9,'2019-08-21 15:11:15',1027.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 (14359,9,9,'2019-08-21 15:11:15',1028.615000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14360,9,9,'2019-08-21 15:11:15',1028.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 (14361,9,9,'2019-08-21 15:11:15',1029.431000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14362,9,9,'2019-08-21 15:11:15',1029.772000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14363,9,9,'2019-08-21 15:11:15',1030.430000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14364,9,9,'2019-08-21 15:11:15',1031.362000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14365,9,9,'2019-08-21 15:11:15',1031.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 (14366,9,9,'2019-08-21 15:11:15',1032.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 (14367,9,9,'2019-08-21 15:11:15',1032.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 (14368,9,9,'2019-08-21 15:11:15',1033.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 (14369,9,9,'2019-08-21 15:11:15',1034.093000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14370,9,9,'2019-08-21 15:11:15',1035.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 (14371,9,9,'2019-08-21 15:11:15',1035.990000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14372,9,9,'2019-08-21 15:11:15',1036.856000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14373,9,9,'2019-08-21 15:11:15',1037.655000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14374,9,9,'2019-08-21 15:11:15',1038.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 (14375,9,9,'2019-08-21 15:11:15',1039.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 (14376,9,9,'2019-08-21 15:11:15',1039.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 (14377,9,9,'2019-08-21 15:11:15',1040.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 (14378,9,9,'2019-08-21 15:11:15',1041.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 (14379,9,9,'2019-08-21 15:11:15',1041.653000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14380,9,9,'2019-08-21 15:11:15',1042.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 (14381,9,9,'2019-08-21 15:11:15',1043.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 (14382,9,9,'2019-08-21 15:11:15',1043.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 (14383,9,9,'2019-08-21 15:11:15',1043.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 (14384,9,9,'2019-08-21 15:11:15',1044.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 (14385,9,9,'2019-08-21 15:11:15',1045.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 (14386,9,9,'2019-08-21 15:11:15',1046.085000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14387,9,9,'2019-08-21 15:11:15',1046.513000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14388,9,9,'2019-08-21 15:11:15',1047.444000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14389,9,9,'2019-08-21 15:11:15',1048.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 (14390,9,9,'2019-08-21 15:11:15',1048.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 (14391,9,9,'2019-08-21 15:11:15',1049.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 (14392,9,9,'2019-08-21 15:11:15',1049.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 (14393,9,9,'2019-08-21 15:11:15',1050.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 (14394,9,9,'2019-08-21 15:11:15',1051.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 (14395,9,9,'2019-08-21 15:11:15',1051.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 (14396,9,9,'2019-08-21 15:11:15',1052.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 (14397,9,9,'2019-08-21 15:11:15',1053.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 (14398,9,9,'2019-08-21 15:11:15',1053.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 (14399,9,9,'2019-08-21 15:11:15',1053.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 (14400,9,9,'2019-08-21 15:11:15',1054.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 (14401,9,9,'2019-08-21 15:11:15',1055.735000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14402,9,9,'2019-08-21 15:11:15',1056.535000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14403,9,9,'2019-08-21 15:11:15',1057.317000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14404,9,9,'2019-08-21 15:11:15',1057.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 (14405,9,9,'2019-08-21 15:11:15',1058.149000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14406,9,9,'2019-08-21 15:11:15',1059.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 (14407,9,9,'2019-08-21 15:11:15',1059.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 (14408,9,9,'2019-08-21 15:11:15',1059.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 (14409,9,9,'2019-08-21 15:11:15',1060.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 (14410,9,9,'2019-08-21 15:11:15',1061.796000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14411,9,9,'2019-08-21 15:11:15',1062.795000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14412,9,9,'2019-08-21 15:11:15',1063.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 (14413,9,9,'2019-08-21 15:11:15',1063.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 (14414,9,9,'2019-08-21 15:11:15',1064.692000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14415,9,9,'2019-08-21 15:11:15',1065.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 (14416,9,9,'2019-08-21 15:11:15',1066.457000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14417,9,9,'2019-08-21 15:11:15',1066.798000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14418,9,9,'2019-08-21 15:11:15',1067.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 (14419,9,9,'2019-08-21 15:11:15',1067.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 (14420,9,9,'2019-08-21 15:11:15',1068.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 (14421,9,9,'2019-08-21 15:11:15',1068.821000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14422,9,9,'2019-08-21 15:11:15',1069.190000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14423,9,9,'2019-08-21 15:11:15',1069.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 (14424,9,9,'2019-08-21 15:11:15',1070.603000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14425,9,9,'2019-08-21 15:11:15',1071.452000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14426,9,9,'2019-08-21 15:11:15',1071.744000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14427,9,9,'2019-08-21 15:11:15',1072.400000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14428,9,9,'2019-08-21 15:11:15',1073.383000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14429,9,9,'2019-08-21 15:11:15',1074.249000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14430,9,9,'2019-08-21 15:11:15',1074.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 (14431,9,9,'2019-08-21 15:11:15',1075.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 (14432,9,9,'2019-08-21 15:11:15',1076.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 (14433,9,9,'2019-08-21 15:11:15',1076.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 (14434,9,9,'2019-08-21 15:11:15',1077.186000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14435,9,9,'2019-08-21 15:11:15',1077.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 (14436,9,9,'2019-08-21 15:11:15',1078.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 (14437,9,9,'2019-08-21 15:11:15',1079.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 (14438,9,9,'2019-08-21 15:11:15',1080.309000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14439,9,9,'2019-08-21 15:11:15',1081.191000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14440,9,9,'2019-08-21 15:11:15',1081.957000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14441,9,9,'2019-08-21 15:11:15',1082.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 (14442,9,9,'2019-08-21 15:11:15',1082.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 (14443,9,9,'2019-08-21 15:11:15',1083.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 (14444,9,9,'2019-08-21 15:11:15',1084.222000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14445,9,9,'2019-08-21 15:11:15',1084.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 (14446,9,9,'2019-08-21 15:11:15',1084.998000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14447,9,9,'2019-08-21 15:11:15',1085.520000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14448,9,9,'2019-08-21 15:11:15',1086.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 (14449,9,9,'2019-08-21 15:11:15',1086.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 (14450,9,9,'2019-08-21 15:11:15',1087.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 (14451,9,9,'2019-08-21 15:11:15',1087.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 (14452,9,9,'2019-08-21 15:11:15',1088.866000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14453,9,9,'2019-08-21 15:11:15',1089.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 (14454,9,9,'2019-08-21 15:11:15',1090.548000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14455,9,9,'2019-08-21 15:11:15',1091.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 (14456,9,9,'2019-08-21 15:11:15',1092.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 (14457,9,9,'2019-08-21 15:11:15',1092.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 (14458,9,9,'2019-08-21 15:11:15',1093.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 (14459,9,9,'2019-08-21 15:11:15',1094.127000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14460,9,9,'2019-08-21 15:11:15',1094.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 (14461,9,9,'2019-08-21 15:11:15',1094.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 (14462,9,9,'2019-08-21 15:11:15',1095.892000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14463,9,9,'2019-08-21 15:11:15',1096.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 (14464,9,9,'2019-08-21 15:11:15',1096.791000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14465,9,9,'2019-08-21 15:11:15',1097.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 (14466,9,9,'2019-08-21 15:11:15',1098.339000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14467,9,9,'2019-08-21 15:11:15',1098.696000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14468,9,9,'2019-08-21 15:11:15',1099.288000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14469,9,9,'2019-08-21 15:11:15',1100.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 (14470,9,9,'2019-08-21 15:11:15',1101.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 (14471,9,9,'2019-08-21 15:11:15',1101.818000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14472,9,9,'2019-08-21 15:11:15',1102.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 (14473,9,9,'2019-08-21 15:11:15',1103.583000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14474,9,9,'2019-08-21 15:11:15',1103.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 (14475,9,9,'2019-08-21 15:11:15',1104.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 (14476,9,9,'2019-08-21 15:11:15',1104.813000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14477,9,9,'2019-08-21 15:11:15',1105.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 (14478,9,9,'2019-08-21 15:11:15',1106.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 (14479,9,9,'2019-08-21 15:11:15',1107.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 (14480,9,9,'2019-08-21 15:11:15',1107.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 (14481,9,9,'2019-08-21 15:11:15',1108.216000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14482,9,9,'2019-08-21 15:11:15',1108.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 (14483,9,9,'2019-08-21 15:11:15',1109.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 (14484,9,9,'2019-08-21 15:11:15',1109.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 (14485,9,9,'2019-08-21 15:11:15',1110.376000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14486,9,9,'2019-08-21 15:11:15',1111.191000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14487,9,9,'2019-08-21 15:11:15',1112.041000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14488,9,9,'2019-08-21 15:11:15',1112.395000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14489,9,9,'2019-08-21 15:11:15',1112.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 (14490,9,9,'2019-08-21 15:11:15',1113.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 (14491,9,9,'2019-08-21 15:11:15',1114.921000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14492,9,9,'2019-08-21 15:11:15',1115.241000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14493,9,9,'2019-08-21 15:11:15',1115.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 (14494,9,9,'2019-08-21 15:11:15',1116.853000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14495,9,9,'2019-08-21 15:11:15',1117.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 (14496,9,9,'2019-08-21 15:11:15',1118.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 (14497,9,9,'2019-08-21 15:11:15',1119.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 (14498,9,9,'2019-08-21 15:11:15',1119.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 (14499,9,9,'2019-08-21 15:11:15',1120.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 (14500,9,9,'2019-08-21 15:11:15',1120.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 (14501,9,9,'2019-08-21 15:11:15',1121.480000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14502,9,9,'2019-08-21 15:11:15',1122.246000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14503,9,9,'2019-08-21 15:11:15',1123.162000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14504,9,9,'2019-08-21 15:11:15',1123.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 (14505,9,9,'2019-08-21 15:11:15',1124.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 (14506,9,9,'2019-08-21 15:11:15',1124.910000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14507,9,9,'2019-08-21 15:11:15',1125.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 (14508,9,9,'2019-08-21 15:11:15',1126.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 (14509,9,9,'2019-08-21 15:11:15',1126.758000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14510,9,9,'2019-08-21 15:11:15',1127.524000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14511,9,9,'2019-08-21 15:11:15',1127.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 (14512,9,9,'2019-08-21 15:11:15',1128.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 (14513,9,9,'2019-08-21 15:11:15',1129.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 (14514,9,9,'2019-08-21 15:11:15',1129.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 (14515,9,9,'2019-08-21 15:11:15',1130.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 (14516,9,9,'2019-08-21 15:11:15',1130.920000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14517,9,9,'2019-08-21 15:11:15',1131.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 (14518,9,9,'2019-08-21 15:11:15',1132.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 (14519,9,9,'2019-08-21 15:11:15',1132.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 (14520,9,9,'2019-08-21 15:11:15',1133.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 (14521,9,9,'2019-08-21 15:11:15',1134.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 (14522,9,9,'2019-08-21 15:11:15',1134.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 (14523,9,9,'2019-08-21 15:11:15',1135.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 (14524,9,9,'2019-08-21 15:11:15',1135.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 (14525,9,9,'2019-08-21 15:11:15',1136.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 (14526,9,9,'2019-08-21 15:11:15',1137.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 (14527,9,9,'2019-08-21 15:11:15',1138.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 (14528,9,9,'2019-08-21 15:11:15',1138.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 (14529,9,9,'2019-08-21 15:11:15',1139.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 (14530,9,9,'2019-08-21 15:11:15',1140.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 (14531,9,9,'2019-08-21 15:11:15',1141.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 (14532,9,9,'2019-08-21 15:11:15',1141.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 (14533,9,9,'2019-08-21 15:11:15',1142.041000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14534,9,9,'2019-08-21 15:11:15',1142.404000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14535,9,9,'2019-08-21 15:11:15',1142.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 (14536,9,9,'2019-08-21 15:11:15',1143.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 (14537,9,9,'2019-08-21 15:11:15',1144.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 (14538,9,9,'2019-08-21 15:11:15',1145.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 (14539,9,9,'2019-08-21 15:11:15',1145.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 (14540,9,9,'2019-08-21 15:11:15',1146.287000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14541,9,9,'2019-08-21 15:11:15',1147.252000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14542,9,9,'2019-08-21 15:11:15',1147.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 (14543,9,9,'2019-08-21 15:11:15',1148.118000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14544,9,9,'2019-08-21 15:11:15',1149.084000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14545,9,9,'2019-08-21 15:11:15',1149.390000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14546,9,9,'2019-08-21 15:11:15',1149.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 (14547,9,9,'2019-08-21 15:11:15',1150.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 (14548,9,9,'2019-08-21 15:11:15',1151.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 (14549,9,9,'2019-08-21 15:11:15',1152.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 (14550,9,9,'2019-08-21 15:11:15',1153.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 (14551,9,9,'2019-08-21 15:11:15',1154.295000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14552,9,9,'2019-08-21 15:11:15',1155.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 (14553,9,9,'2019-08-21 15:11:15',1156.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 (14554,9,9,'2019-08-21 15:11:15',1156.587000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14555,9,9,'2019-08-21 15:11:15',1157.241000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14556,9,9,'2019-08-21 15:11:15',1157.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 (14557,9,9,'2019-08-21 15:11:15',1158.091000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14558,9,9,'2019-08-21 15:11:15',1158.484000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14559,9,9,'2019-08-21 15:11:15',1159.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 (14560,9,9,'2019-08-21 15:11:15',1160.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 (14561,9,9,'2019-08-21 15:11:15',1160.888000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14562,9,9,'2019-08-21 15:11:15',1161.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 (14563,9,9,'2019-08-21 15:11:15',1161.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 (14564,9,9,'2019-08-21 15:11:15',1162.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 (14565,9,9,'2019-08-21 15:11:15',1163.468000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14566,9,9,'2019-08-21 15:11:15',1164.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 (14567,9,9,'2019-08-21 15:11:15',1165.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 (14568,9,9,'2019-08-21 15:11:15',1165.702000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14569,9,9,'2019-08-21 15:11:15',1166.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 (14570,9,9,'2019-08-21 15:11:15',1166.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 (14571,9,9,'2019-08-21 15:11:15',1167.197000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14572,9,9,'2019-08-21 15:11:15',1168.180000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14573,9,9,'2019-08-21 15:11:15',1169.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 (14574,9,9,'2019-08-21 15:11:15',1169.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 (14575,9,9,'2019-08-21 15:11:15',1170.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 (14576,9,9,'2019-08-21 15:11:15',1171.692000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14577,9,9,'2019-08-21 15:11:15',1172.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 (14578,9,9,'2019-08-21 15:11:15',1172.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 (14579,9,9,'2019-08-21 15:11:15',1172.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 (14580,9,9,'2019-08-21 15:11:15',1173.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 (14581,9,9,'2019-08-21 15:11:15',1174.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 (14582,9,9,'2019-08-21 15:11:15',1175.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 (14583,9,9,'2019-08-21 15:11:15',1176.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 (14584,9,9,'2019-08-21 15:11:15',1176.392000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14585,9,9,'2019-08-21 15:11:15',1176.970000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14586,9,9,'2019-08-21 15:11:15',1177.853000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14587,9,9,'2019-08-21 15:11:15',1178.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 (14588,9,9,'2019-08-21 15:11:15',1178.768000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14589,9,9,'2019-08-21 15:11:15',1179.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 (14590,9,9,'2019-08-21 15:11:15',1180.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 (14591,9,9,'2019-08-21 15:11:15',1180.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 (14592,9,9,'2019-08-21 15:11:15',1181.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 (14593,9,9,'2019-08-21 15:11:15',1181.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 (14594,9,9,'2019-08-21 15:11:15',1182.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 (14595,9,9,'2019-08-21 15:11:15',1183.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 (14596,9,9,'2019-08-21 15:11:15',1184.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 (14597,9,9,'2019-08-21 15:11:15',1184.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 (14598,9,9,'2019-08-21 15:11:15',1185.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 (14599,9,9,'2019-08-21 15:11:15',1186.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 (14600,9,9,'2019-08-21 15:11:15',1187.112000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14601,9,9,'2019-08-21 15:11:15',1187.575000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14602,9,9,'2019-08-21 15:11:15',1188.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 (14603,9,9,'2019-08-21 15:11:15',1188.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 (14604,9,9,'2019-08-21 15:11:15',1189.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 (14605,10,10,'2019-08-21 15:11:22',0.488000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14606,10,10,'2019-08-21 15:11:22',6.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 (14607,10,10,'2019-08-21 15:11:22',6.682000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14608,10,10,'2019-08-21 15:11:22',7.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 (14609,10,10,'2019-08-21 15:11:22',7.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 (14610,10,10,'2019-08-21 15:11:22',7.837000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14611,10,10,'2019-08-21 15:11:22',8.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 (14612,10,10,'2019-08-21 15:11:22',9.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 (14613,10,10,'2019-08-21 15:11:22',10.351000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14614,10,10,'2019-08-21 15:11:22',11.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 (14615,10,10,'2019-08-21 15:11:22',12.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 (14616,10,10,'2019-08-21 15:11:22',12.688000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14617,10,10,'2019-08-21 15:11:22',13.164000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14618,10,10,'2019-08-21 15:11:22',13.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 (14619,10,10,'2019-08-21 15:11:22',14.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 (14620,10,10,'2019-08-21 15:11:22',15.029000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14621,10,10,'2019-08-21 15:11:22',15.878000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14622,10,10,'2019-08-21 15:11:22',16.894000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14623,10,10,'2019-08-21 15:11:22',17.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 (14624,10,10,'2019-08-21 15:11:22',18.525000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14625,10,10,'2019-08-21 15:11:22',18.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 (14626,10,10,'2019-08-21 15:11:22',19.357000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14627,10,10,'2019-08-21 15:11:22',20.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 (14628,10,10,'2019-08-21 15:11:22',20.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 (14629,10,10,'2019-08-21 15:11:22',20.939000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14630,10,10,'2019-08-21 15:11:22',21.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 (14631,10,10,'2019-08-21 15:11:22',21.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 (14632,10,10,'2019-08-21 15:11:22',22.737000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14633,10,10,'2019-08-21 15:11:22',23.553000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14634,10,10,'2019-08-21 15:11:22',23.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 (14635,10,10,'2019-08-21 15:11:22',24.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 (14636,10,10,'2019-08-21 15:11:22',25.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 (14637,10,10,'2019-08-21 15:11:22',26.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 (14638,10,10,'2019-08-21 15:11:22',27.299000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14639,10,10,'2019-08-21 15:11:22',28.198000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14640,10,10,'2019-08-21 15:11:22',28.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 (14641,10,10,'2019-08-21 15:11:22',29.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 (14642,10,10,'2019-08-21 15:11:22',29.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 (14643,10,10,'2019-08-21 15:11:22',29.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 (14644,10,10,'2019-08-21 15:11:22',30.928000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14645,10,10,'2019-08-21 15:11:22',31.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 (14646,10,10,'2019-08-21 15:11:22',32.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 (14647,10,10,'2019-08-21 15:11:22',32.710000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14648,10,10,'2019-08-21 15:11:22',33.658000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14649,10,10,'2019-08-21 15:11:22',33.945000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14650,10,10,'2019-08-21 15:11:22',34.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 (14651,10,10,'2019-08-21 15:11:22',35.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 (14652,10,10,'2019-08-21 15:11:22',36.372000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14653,10,10,'2019-08-21 15:11:22',37.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 (14654,10,10,'2019-08-21 15:11:22',38.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 (14655,10,10,'2019-08-21 15:11:22',38.886000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14656,10,10,'2019-08-21 15:11:22',39.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 (14657,10,10,'2019-08-21 15:11:22',39.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 (14658,10,10,'2019-08-21 15:11:22',40.112000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14659,10,10,'2019-08-21 15:11:22',40.617000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14660,10,10,'2019-08-21 15:11:22',41.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 (14661,10,10,'2019-08-21 15:11:22',42.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 (14662,10,10,'2019-08-21 15:11:22',43.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 (14663,10,10,'2019-08-21 15:11:22',43.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 (14664,10,10,'2019-08-21 15:11:22',44.197000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14665,10,10,'2019-08-21 15:11:22',44.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 (14666,10,10,'2019-08-21 15:11:22',45.311000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14667,10,10,'2019-08-21 15:11:22',45.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 (14668,10,10,'2019-08-21 15:11:22',46.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 (14669,10,10,'2019-08-21 15:11:22',47.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 (14670,10,10,'2019-08-21 15:11:22',47.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 (14671,10,10,'2019-08-21 15:11:22',48.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 (14672,10,10,'2019-08-21 15:11:22',48.723000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14673,10,10,'2019-08-21 15:11:22',49.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 (14674,10,10,'2019-08-21 15:11:22',50.074000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14675,10,10,'2019-08-21 15:11:22',50.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 (14676,10,10,'2019-08-21 15:11:22',51.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 (14677,10,10,'2019-08-21 15:11:22',52.588000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14678,10,10,'2019-08-21 15:11:22',53.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 (14679,10,10,'2019-08-21 15:11:22',53.840000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14680,10,10,'2019-08-21 15:11:22',54.319000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14681,10,10,'2019-08-21 15:11:22',55.252000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14682,10,10,'2019-08-21 15:11:22',55.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 (14683,10,10,'2019-08-21 15:11:22',56.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 (14684,10,10,'2019-08-21 15:11:22',57.066000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14685,10,10,'2019-08-21 15:11:22',57.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 (14686,10,10,'2019-08-21 15:11:22',58.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 (14687,10,10,'2019-08-21 15:11:22',59.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 (14688,10,10,'2019-08-21 15:11:22',60.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 (14689,10,10,'2019-08-21 15:11:22',61.066000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14690,10,10,'2019-08-21 15:11:22',61.462000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14691,10,10,'2019-08-21 15:11:22',62.244000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14692,10,10,'2019-08-21 15:11:22',62.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 (14693,10,10,'2019-08-21 15:11:22',63.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 (14694,10,10,'2019-08-21 15:11:22',64.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 (14695,10,10,'2019-08-21 15:11:22',64.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 (14696,10,10,'2019-08-21 15:11:22',65.296000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14697,10,10,'2019-08-21 15:11:22',65.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 (14698,10,10,'2019-08-21 15:11:22',66.134000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14699,10,10,'2019-08-21 15:11:22',66.605000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14700,10,10,'2019-08-21 15:11:22',67.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 (14701,10,10,'2019-08-21 15:11:22',68.304000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14702,10,10,'2019-08-21 15:11:22',69.187000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14703,10,10,'2019-08-21 15:11:22',69.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 (14704,10,10,'2019-08-21 15:11:22',70.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 (14705,10,10,'2019-08-21 15:11:22',71.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 (14706,10,10,'2019-08-21 15:11:22',71.353000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14707,10,10,'2019-08-21 15:11:22',71.917000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14708,10,10,'2019-08-21 15:11:22',72.766000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14709,10,10,'2019-08-21 15:11:22',73.564000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14710,10,10,'2019-08-21 15:11:22',74.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 (14711,10,10,'2019-08-21 15:11:22',75.430000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14712,10,10,'2019-08-21 15:11:22',76.328000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14713,10,10,'2019-08-21 15:11:22',76.772000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14714,10,10,'2019-08-21 15:11:22',77.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 (14715,10,10,'2019-08-21 15:11:22',78.043000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14716,10,10,'2019-08-21 15:11:22',78.407000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14717,10,10,'2019-08-21 15:11:22',78.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 (14718,10,10,'2019-08-21 15:11:22',79.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 (14719,10,10,'2019-08-21 15:11:22',79.825000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14720,10,10,'2019-08-21 15:11:22',80.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 (14721,10,10,'2019-08-21 15:11:22',81.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 (14722,10,10,'2019-08-21 15:11:22',81.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 (14723,10,10,'2019-08-21 15:11:22',82.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 (14724,10,10,'2019-08-21 15:11:22',83.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 (14725,10,10,'2019-08-21 15:11:22',84.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 (14726,10,10,'2019-08-21 15:11:22',84.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 (14727,10,10,'2019-08-21 15:11:22',85.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 (14728,10,10,'2019-08-21 15:11:22',86.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 (14729,10,10,'2019-08-21 15:11:22',87.134000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14730,10,10,'2019-08-21 15:11:22',87.933000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14731,10,10,'2019-08-21 15:11:22',88.360000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14732,10,10,'2019-08-21 15:11:22',88.832000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14733,10,10,'2019-08-21 15:11:22',89.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 (14734,10,10,'2019-08-21 15:11:22',90.045000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14735,10,10,'2019-08-21 15:11:22',90.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 (14736,10,10,'2019-08-21 15:11:22',91.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 (14737,10,10,'2019-08-21 15:11:22',92.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 (14738,10,10,'2019-08-21 15:11:22',93.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 (14739,10,10,'2019-08-21 15:11:22',94.093000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14740,10,10,'2019-08-21 15:11:22',94.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 (14741,10,10,'2019-08-21 15:11:22',94.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 (14742,10,10,'2019-08-21 15:11:22',95.791000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14743,10,10,'2019-08-21 15:11:22',96.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 (14744,10,10,'2019-08-21 15:11:22',97.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 (14745,10,10,'2019-08-21 15:11:22',97.929000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14746,10,10,'2019-08-21 15:11:22',98.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 (14747,10,10,'2019-08-21 15:11:22',99.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 (14748,10,10,'2019-08-21 15:11:22',99.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 (14749,10,10,'2019-08-21 15:11:22',100.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 (14750,10,10,'2019-08-21 15:11:22',101.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 (14751,10,10,'2019-08-21 15:11:22',102.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 (14752,10,10,'2019-08-21 15:11:22',103.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 (14753,10,10,'2019-08-21 15:11:22',103.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 (14754,10,10,'2019-08-21 15:11:22',103.965000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14755,10,10,'2019-08-21 15:11:22',104.641000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14756,10,10,'2019-08-21 15:11:22',104.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 (14757,10,10,'2019-08-21 15:11:22',105.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 (14758,10,10,'2019-08-21 15:11:22',106.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 (14759,10,10,'2019-08-21 15:11:22',106.846000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14760,10,10,'2019-08-21 15:11:22',107.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 (14761,10,10,'2019-08-21 15:11:22',108.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 (14762,10,10,'2019-08-21 15:11:22',109.409000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14763,10,10,'2019-08-21 15:11:22',110.241000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14764,10,10,'2019-08-21 15:11:22',110.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 (14765,10,10,'2019-08-21 15:11:22',111.058000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14766,10,10,'2019-08-21 15:11:22',111.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 (14767,10,10,'2019-08-21 15:11:22',112.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 (14768,10,10,'2019-08-21 15:11:22',113.180000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14769,10,10,'2019-08-21 15:11:22',113.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 (14770,10,10,'2019-08-21 15:11:22',114.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 (14771,10,10,'2019-08-21 15:11:22',114.637000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14772,10,10,'2019-08-21 15:11:22',115.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 (14773,10,10,'2019-08-21 15:11:22',116.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 (14774,10,10,'2019-08-21 15:11:22',117.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 (14775,10,10,'2019-08-21 15:11:22',117.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 (14776,10,10,'2019-08-21 15:11:22',118.166000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14777,10,10,'2019-08-21 15:11:22',119.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 (14778,10,10,'2019-08-21 15:11:22',119.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 (14779,10,10,'2019-08-21 15:11:22',120.930000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14780,10,10,'2019-08-21 15:11:22',121.386000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14781,10,10,'2019-08-21 15:11:22',121.779000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14782,10,10,'2019-08-21 15:11:22',122.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 (14783,10,10,'2019-08-21 15:11:22',123.112000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14784,10,10,'2019-08-21 15:11:22',123.660000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14785,10,10,'2019-08-21 15:11:22',124.510000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14786,10,10,'2019-08-21 15:11:22',125.491000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14787,10,10,'2019-08-21 15:11:22',126.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 (14788,10,10,'2019-08-21 15:11:22',126.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 (14789,10,10,'2019-08-21 15:11:22',127.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 (14790,10,10,'2019-08-21 15:11:22',127.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 (14791,10,10,'2019-08-21 15:11:22',127.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 (14792,10,10,'2019-08-21 15:11:22',128.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 (14793,10,10,'2019-08-21 15:11:22',128.805000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14794,10,10,'2019-08-21 15:11:22',129.653000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14795,10,10,'2019-08-21 15:11:22',130.470000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14796,10,10,'2019-08-21 15:11:22',131.469000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14797,10,10,'2019-08-21 15:11:22',132.384000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14798,10,10,'2019-08-21 15:11:22',133.233000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14799,10,10,'2019-08-21 15:11:22',133.640000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14800,10,10,'2019-08-21 15:11:22',134.049000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14801,10,10,'2019-08-21 15:11:22',134.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 (14802,10,10,'2019-08-21 15:11:22',135.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 (14803,10,10,'2019-08-21 15:11:22',136.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 (14804,10,10,'2019-08-21 15:11:22',136.950000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14805,10,10,'2019-08-21 15:11:22',137.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 (14806,10,10,'2019-08-21 15:11:22',138.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 (14807,10,10,'2019-08-21 15:11:22',139.127000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14808,10,10,'2019-08-21 15:11:22',139.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 (14809,10,10,'2019-08-21 15:11:22',140.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 (14810,10,10,'2019-08-21 15:11:22',141.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 (14811,10,10,'2019-08-21 15:11:22',141.473000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14812,10,10,'2019-08-21 15:11:22',141.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 (14813,10,10,'2019-08-21 15:11:22',142.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 (14814,10,10,'2019-08-21 15:11:22',143.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 (14815,10,10,'2019-08-21 15:11:22',144.504000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14816,10,10,'2019-08-21 15:11:22',144.854000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14817,10,10,'2019-08-21 15:11:22',145.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 (14818,10,10,'2019-08-21 15:11:22',145.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 (14819,10,10,'2019-08-21 15:11:22',146.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 (14820,10,10,'2019-08-21 15:11:22',147.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 (14821,10,10,'2019-08-21 15:11:22',147.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 (14822,10,10,'2019-08-21 15:11:22',148.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 (14823,10,10,'2019-08-21 15:11:22',148.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 (14824,10,10,'2019-08-21 15:11:22',149.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 (14825,10,10,'2019-08-21 15:11:22',150.681000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14826,10,10,'2019-08-21 15:11:22',151.496000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14827,10,10,'2019-08-21 15:11:22',151.849000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14828,10,10,'2019-08-21 15:11:22',152.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 (14829,10,10,'2019-08-21 15:11:22',153.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 (14830,10,10,'2019-08-21 15:11:22',154.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 (14831,10,10,'2019-08-21 15:11:22',154.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 (14832,10,10,'2019-08-21 15:11:22',155.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 (14833,10,10,'2019-08-21 15:11:22',156.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 (14834,10,10,'2019-08-21 15:11:22',157.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 (14835,10,10,'2019-08-21 15:11:22',157.807000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14836,10,10,'2019-08-21 15:11:22',158.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 (14837,10,10,'2019-08-21 15:11:22',158.655000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14838,10,10,'2019-08-21 15:11:22',159.487000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14839,10,10,'2019-08-21 15:11:22',160.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 (14840,10,10,'2019-08-21 15:11:22',160.641000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14841,10,10,'2019-08-21 15:11:22',161.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 (14842,10,10,'2019-08-21 15:11:22',162.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 (14843,10,10,'2019-08-21 15:11:22',163.134000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14844,10,10,'2019-08-21 15:11:22',163.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 (14845,10,10,'2019-08-21 15:11:22',164.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 (14846,10,10,'2019-08-21 15:11:22',165.065000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14847,10,10,'2019-08-21 15:11:22',166.030000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14848,10,10,'2019-08-21 15:11:22',166.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 (14849,10,10,'2019-08-21 15:11:22',166.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 (14850,10,10,'2019-08-21 15:11:22',167.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 (14851,10,10,'2019-08-21 15:11:22',168.611000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14852,10,10,'2019-08-21 15:11:22',168.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 (14853,10,10,'2019-08-21 15:11:22',169.510000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14854,10,10,'2019-08-21 15:11:22',170.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 (14855,10,10,'2019-08-21 15:11:22',170.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 (14856,10,10,'2019-08-21 15:11:22',171.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 (14857,10,10,'2019-08-21 15:11:22',172.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 (14858,10,10,'2019-08-21 15:11:22',172.602000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14859,10,10,'2019-08-21 15:11:22',173.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 (14860,10,10,'2019-08-21 15:11:22',173.922000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14861,10,10,'2019-08-21 15:11:22',174.921000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14862,10,10,'2019-08-21 15:11:22',175.736000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14863,10,10,'2019-08-21 15:11:22',176.205000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14864,10,10,'2019-08-21 15:11:22',176.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 (14865,10,10,'2019-08-21 15:11:22',177.435000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14866,10,10,'2019-08-21 15:11:22',178.400000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14867,10,10,'2019-08-21 15:11:22',178.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 (14868,10,10,'2019-08-21 15:11:22',179.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 (14869,10,10,'2019-08-21 15:11:22',179.982000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14870,10,10,'2019-08-21 15:11:22',180.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 (14871,10,10,'2019-08-21 15:11:22',181.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 (14872,10,10,'2019-08-21 15:11:22',182.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 (14873,10,10,'2019-08-21 15:11:22',183.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 (14874,10,10,'2019-08-21 15:11:22',183.895000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14875,10,10,'2019-08-21 15:11:22',184.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 (14876,10,10,'2019-08-21 15:11:22',184.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 (14877,10,10,'2019-08-21 15:11:22',185.659000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14878,10,10,'2019-08-21 15:11:22',186.642000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14879,10,10,'2019-08-21 15:11:22',187.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 (14880,10,10,'2019-08-21 15:11:22',187.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 (14881,10,10,'2019-08-21 15:11:22',188.572000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14882,10,10,'2019-08-21 15:11:22',189.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 (14883,10,10,'2019-08-21 15:11:22',190.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 (14884,10,10,'2019-08-21 15:11:22',190.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 (14885,10,10,'2019-08-21 15:11:22',191.319000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14886,10,10,'2019-08-21 15:11:22',191.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 (14887,10,10,'2019-08-21 15:11:22',192.252000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14888,10,10,'2019-08-21 15:11:22',193.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 (14889,10,10,'2019-08-21 15:11:22',194.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 (14890,10,10,'2019-08-21 15:11:22',194.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 (14891,10,10,'2019-08-21 15:11:22',195.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 (14892,10,10,'2019-08-21 15:11:22',195.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 (14893,10,10,'2019-08-21 15:11:22',196.514000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14894,10,10,'2019-08-21 15:11:22',197.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 (14895,10,10,'2019-08-21 15:11:22',197.795000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14896,10,10,'2019-08-21 15:11:22',198.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 (14897,10,10,'2019-08-21 15:11:22',198.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 (14898,10,10,'2019-08-21 15:11:22',199.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 (14899,10,10,'2019-08-21 15:11:22',199.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 (14900,10,10,'2019-08-21 15:11:22',200.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 (14901,10,10,'2019-08-21 15:11:22',201.658000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14902,10,10,'2019-08-21 15:11:22',202.246000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14903,10,10,'2019-08-21 15:11:22',202.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 (14904,10,10,'2019-08-21 15:11:22',202.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 (14905,10,10,'2019-08-21 15:11:22',203.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 (14906,10,10,'2019-08-21 15:11:22',204.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 (14907,10,10,'2019-08-21 15:11:22',205.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 (14908,10,10,'2019-08-21 15:11:22',205.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 (14909,10,10,'2019-08-21 15:11:22',206.687000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14910,10,10,'2019-08-21 15:11:22',207.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 (14911,10,10,'2019-08-21 15:11:22',207.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 (14912,10,10,'2019-08-21 15:11:22',207.858000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14913,10,10,'2019-08-21 15:11:22',208.234000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14914,10,10,'2019-08-21 15:11:22',208.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 (14915,10,10,'2019-08-21 15:11:22',209.000000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14916,10,10,'2019-08-21 15:11:22',209.783000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14917,10,10,'2019-08-21 15:11:22',210.549000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14918,10,10,'2019-08-21 15:11:22',211.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 (14919,10,10,'2019-08-21 15:11:22',212.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 (14920,10,10,'2019-08-21 15:11:22',212.979000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14921,10,10,'2019-08-21 15:11:22',213.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 (14922,10,10,'2019-08-21 15:11:22',213.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 (14923,10,10,'2019-08-21 15:11:22',214.761000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14924,10,10,'2019-08-21 15:11:22',215.146000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14925,10,10,'2019-08-21 15:11:22',215.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 (14926,10,10,'2019-08-21 15:11:22',216.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 (14927,10,10,'2019-08-21 15:11:22',217.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 (14928,10,10,'2019-08-21 15:11:22',218.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 (14929,10,10,'2019-08-21 15:11:22',219.123000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14930,10,10,'2019-08-21 15:11:22',220.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 (14931,10,10,'2019-08-21 15:11:22',220.415000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14932,10,10,'2019-08-21 15:11:22',220.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 (14933,10,10,'2019-08-21 15:11:22',221.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 (14934,10,10,'2019-08-21 15:11:22',221.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 (14935,10,10,'2019-08-21 15:11:22',222.231000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14936,10,10,'2019-08-21 15:11:22',222.785000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14937,10,10,'2019-08-21 15:11:22',223.651000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14938,10,10,'2019-08-21 15:11:22',224.434000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14939,10,10,'2019-08-21 15:11:22',225.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 (14940,10,10,'2019-08-21 15:11:22',226.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 (14941,10,10,'2019-08-21 15:11:22',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 (14942,10,10,'2019-08-21 15:11:22',227.098000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14943,10,10,'2019-08-21 15:11:22',228.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 (14944,10,10,'2019-08-21 15:11:22',228.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 (14945,10,10,'2019-08-21 15:11:22',229.348000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14946,10,10,'2019-08-21 15:11:22',229.728000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14947,10,10,'2019-08-21 15:11:22',230.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 (14948,10,10,'2019-08-21 15:11:22',230.627000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14949,10,10,'2019-08-21 15:11:22',231.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 (14950,10,10,'2019-08-21 15:11:22',232.508000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14951,10,10,'2019-08-21 15:11:22',233.440000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14952,10,10,'2019-08-21 15:11:22',234.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 (14953,10,10,'2019-08-21 15:11:22',235.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 (14954,10,10,'2019-08-21 15:11:22',235.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 (14955,10,10,'2019-08-21 15:11:22',236.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 (14956,10,10,'2019-08-21 15:11:22',237.036000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14957,10,10,'2019-08-21 15:11:22',237.443000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14958,10,10,'2019-08-21 15:11:22',237.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 (14959,10,10,'2019-08-21 15:11:22',238.868000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14960,10,10,'2019-08-21 15:11:22',239.733000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14961,10,10,'2019-08-21 15:11:22',240.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 (14962,10,10,'2019-08-21 15:11:22',240.699000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14963,10,10,'2019-08-21 15:11:22',241.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 (14964,10,10,'2019-08-21 15:11:22',242.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 (14965,10,10,'2019-08-21 15:11:22',242.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 (14966,10,10,'2019-08-21 15:11:22',243.463000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14967,10,10,'2019-08-21 15:11:22',243.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 (14968,10,10,'2019-08-21 15:11:22',244.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 (14969,10,10,'2019-08-21 15:11:22',244.690000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14970,10,10,'2019-08-21 15:11:22',245.178000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14971,10,10,'2019-08-21 15:11:22',246.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 (14972,10,10,'2019-08-21 15:11:22',247.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 (14973,10,10,'2019-08-21 15:11:22',247.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 (14974,10,10,'2019-08-21 15:11:22',248.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 (14975,10,10,'2019-08-21 15:11:22',249.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 (14976,10,10,'2019-08-21 15:11:22',250.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 (14977,10,10,'2019-08-21 15:11:22',251.090000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14978,10,10,'2019-08-21 15:11:22',251.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 (14979,10,10,'2019-08-21 15:11:22',252.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 (14980,10,10,'2019-08-21 15:11:22',253.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 (14981,10,10,'2019-08-21 15:11:22',253.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 (14982,10,10,'2019-08-21 15:11:22',254.151000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14983,10,10,'2019-08-21 15:11:22',254.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 (14984,10,10,'2019-08-21 15:11:22',255.350000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14985,10,10,'2019-08-21 15:11:22',255.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 (14986,10,10,'2019-08-21 15:11:22',256.849000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14987,10,10,'2019-08-21 15:11:22',257.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 (14988,10,10,'2019-08-21 15:11:22',257.830000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14989,10,10,'2019-08-21 15:11:22',258.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 (14990,10,10,'2019-08-21 15:11:22',259.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 (14991,10,10,'2019-08-21 15:11:22',260.134000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14992,10,10,'2019-08-21 15:11:22',260.661000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14993,10,10,'2019-08-21 15:11:22',261.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 (14994,10,10,'2019-08-21 15:11:22',262.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 (14995,10,10,'2019-08-21 15:11:22',262.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 (14996,10,10,'2019-08-21 15:11:22',263.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 (14997,10,10,'2019-08-21 15:11:22',264.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 (14998,10,10,'2019-08-21 15:11:22',265.040000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14999,10,10,'2019-08-21 15:11:22',265.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 (15000,10,10,'2019-08-21 15:11:22',266.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 (15001,10,10,'2019-08-21 15:11:22',266.737000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15002,10,10,'2019-08-21 15:11:22',267.587000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15003,10,10,'2019-08-21 15:11:22',268.369000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15004,10,10,'2019-08-21 15:11:22',268.724000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15005,10,10,'2019-08-21 15:11:22',269.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 (15006,10,10,'2019-08-21 15:11:22',274.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 (15007,10,10,'2019-08-21 15:11:22',274.387000,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 (15008,10,10,'2019-08-21 15:11:22',280.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 (15009,10,10,'2019-08-21 15:11:22',280.905000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15010,10,10,'2019-08-21 15:11:22',281.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 (15011,10,10,'2019-08-21 15:11:22',282.787000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15012,10,10,'2019-08-21 15:11:22',283.753000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15013,10,10,'2019-08-21 15:11:22',284.535000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15014,10,10,'2019-08-21 15:11:22',284.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 (15015,10,10,'2019-08-21 15:11:22',285.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 (15016,10,10,'2019-08-21 15:11:22',285.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 (15017,10,10,'2019-08-21 15:11:22',286.217000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15018,10,10,'2019-08-21 15:11:22',287.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 (15019,10,10,'2019-08-21 15:11:22',287.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 (15020,10,10,'2019-08-21 15:11:22',288.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 (15021,10,10,'2019-08-21 15:11:22',288.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 (15022,10,10,'2019-08-21 15:11:22',289.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 (15023,10,10,'2019-08-21 15:11:22',290.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 (15024,10,10,'2019-08-21 15:11:22',291.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 (15025,10,10,'2019-08-21 15:11:22',291.710000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15026,10,10,'2019-08-21 15:11:22',292.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 (15027,10,10,'2019-08-21 15:11:22',292.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 (15028,10,10,'2019-08-21 15:11:22',293.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 (15029,10,10,'2019-08-21 15:11:22',293.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 (15030,10,10,'2019-08-21 15:11:22',294.707000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15031,10,10,'2019-08-21 15:11:22',295.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 (15032,10,10,'2019-08-21 15:11:22',296.372000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15033,10,10,'2019-08-21 15:11:22',297.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 (15034,10,10,'2019-08-21 15:11:22',298.104000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15035,10,10,'2019-08-21 15:11:22',298.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 (15036,10,10,'2019-08-21 15:11:22',299.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 (15037,10,10,'2019-08-21 15:11:22',299.669000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15038,10,10,'2019-08-21 15:11:22',299.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 (15039,10,10,'2019-08-21 15:11:22',300.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 (15040,10,10,'2019-08-21 15:11:22',301.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 (15041,10,10,'2019-08-21 15:11:22',301.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 (15042,10,10,'2019-08-21 15:11:22',302.433000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15043,10,10,'2019-08-21 15:11:22',303.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 (15044,10,10,'2019-08-21 15:11:22',304.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 (15045,10,10,'2019-08-21 15:11:22',305.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 (15046,10,10,'2019-08-21 15:11:22',305.599000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15047,10,10,'2019-08-21 15:11:22',306.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 (15048,10,10,'2019-08-21 15:11:22',306.588000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15049,10,10,'2019-08-21 15:11:22',306.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 (15050,10,10,'2019-08-21 15:11:22',307.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 (15051,10,10,'2019-08-21 15:11:22',308.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 (15052,10,10,'2019-08-21 15:11:22',309.524000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15053,10,10,'2019-08-21 15:11:22',309.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 (15054,10,10,'2019-08-21 15:11:22',310.374000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15055,10,10,'2019-08-21 15:11:22',311.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 (15056,10,10,'2019-08-21 15:11:22',311.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 (15057,10,10,'2019-08-21 15:11:22',311.972000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15058,10,10,'2019-08-21 15:11:22',312.737000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15059,10,10,'2019-08-21 15:11:22',313.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 (15060,10,10,'2019-08-21 15:11:22',314.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 (15061,10,10,'2019-08-21 15:11:22',315.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 (15062,10,10,'2019-08-21 15:11:22',315.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 (15063,10,10,'2019-08-21 15:11:22',316.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 (15064,10,10,'2019-08-21 15:11:22',316.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 (15065,10,10,'2019-08-21 15:11:22',317.249000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15066,10,10,'2019-08-21 15:11:22',318.198000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15067,10,10,'2019-08-21 15:11:22',319.197000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15068,10,10,'2019-08-21 15:11:22',319.519000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15069,10,10,'2019-08-21 15:11:22',319.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 (15070,10,10,'2019-08-21 15:11:22',320.745000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15071,10,10,'2019-08-21 15:11:22',321.744000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15072,10,10,'2019-08-21 15:11:22',322.610000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15073,10,10,'2019-08-21 15:11:22',323.476000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15074,10,10,'2019-08-21 15:11:22',324.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 (15075,10,10,'2019-08-21 15:11:22',324.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 (15076,10,10,'2019-08-21 15:11:22',325.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 (15077,10,10,'2019-08-21 15:11:22',325.615000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15078,10,10,'2019-08-21 15:11:22',326.156000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15079,10,10,'2019-08-21 15:11:22',327.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 (15080,10,10,'2019-08-21 15:11:22',327.987000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15081,10,10,'2019-08-21 15:11:22',328.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 (15082,10,10,'2019-08-21 15:11:22',328.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 (15083,10,10,'2019-08-21 15:11:22',329.836000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15084,10,10,'2019-08-21 15:11:22',330.802000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15085,10,10,'2019-08-21 15:11:22',331.116000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15086,10,10,'2019-08-21 15:11:22',331.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 (15087,10,10,'2019-08-21 15:11:22',332.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 (15088,10,10,'2019-08-21 15:11:22',333.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 (15089,10,10,'2019-08-21 15:11:22',334.104000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15090,10,10,'2019-08-21 15:11:22',334.563000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15091,10,10,'2019-08-21 15:11:22',334.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 (15092,10,10,'2019-08-21 15:11:22',335.363000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15093,10,10,'2019-08-21 15:11:22',336.245000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15094,10,10,'2019-08-21 15:11:22',337.095000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15095,10,10,'2019-08-21 15:11:22',337.927000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15096,10,10,'2019-08-21 15:11:22',338.726000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15097,10,10,'2019-08-21 15:11:22',339.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 (15098,10,10,'2019-08-21 15:11:22',340.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 (15099,10,10,'2019-08-21 15:11:22',340.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 (15100,10,10,'2019-08-21 15:11:22',341.456000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15101,10,10,'2019-08-21 15:11:22',342.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 (15102,10,10,'2019-08-21 15:11:22',342.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 (15103,10,10,'2019-08-21 15:11:22',343.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 (15104,10,10,'2019-08-21 15:11:22',344.286000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15105,10,10,'2019-08-21 15:11:22',345.152000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15106,10,10,'2019-08-21 15:11:22',345.601000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15107,10,10,'2019-08-21 15:11:22',346.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 (15108,10,10,'2019-08-21 15:11:22',346.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 (15109,10,10,'2019-08-21 15:11:22',347.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 (15110,10,10,'2019-08-21 15:11:22',347.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 (15111,10,10,'2019-08-21 15:11:22',348.632000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15112,10,10,'2019-08-21 15:11:22',349.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 (15113,10,10,'2019-08-21 15:11:22',350.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 (15114,10,10,'2019-08-21 15:11:22',350.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 (15115,10,10,'2019-08-21 15:11:22',351.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 (15116,10,10,'2019-08-21 15:11:22',352.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 (15117,10,10,'2019-08-21 15:11:22',352.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 (15118,10,10,'2019-08-21 15:11:22',353.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 (15119,10,10,'2019-08-21 15:11:22',353.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 (15120,10,10,'2019-08-21 15:11:22',354.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 (15121,10,10,'2019-08-21 15:11:22',355.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 (15122,10,10,'2019-08-21 15:11:22',356.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 (15123,10,10,'2019-08-21 15:11:22',356.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 (15124,10,10,'2019-08-21 15:11:22',356.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 (15125,10,10,'2019-08-21 15:11:22',357.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 (15126,10,10,'2019-08-21 15:11:22',358.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 (15127,10,10,'2019-08-21 15:11:22',359.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 (15128,10,10,'2019-08-21 15:11:22',360.353000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15129,10,10,'2019-08-21 15:11:22',361.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 (15130,10,10,'2019-08-21 15:11:22',362.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 (15131,10,10,'2019-08-21 15:11:22',362.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 (15132,10,10,'2019-08-21 15:11:22',362.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 (15133,10,10,'2019-08-21 15:11:22',363.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 (15134,10,10,'2019-08-21 15:11:22',364.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 (15135,10,10,'2019-08-21 15:11:22',364.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 (15136,10,10,'2019-08-21 15:11:22',365.563000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15137,10,10,'2019-08-21 15:11:22',366.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 (15138,10,10,'2019-08-21 15:11:22',366.858000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15139,10,10,'2019-08-21 15:11:22',367.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 (15140,10,10,'2019-08-21 15:11:22',367.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 (15141,10,10,'2019-08-21 15:11:22',368.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 (15142,10,10,'2019-08-21 15:11:22',369.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 (15143,10,10,'2019-08-21 15:11:22',370.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 (15144,10,10,'2019-08-21 15:11:22',371.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 (15145,10,10,'2019-08-21 15:11:22',372.090000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15146,10,10,'2019-08-21 15:11:22',372.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 (15147,10,10,'2019-08-21 15:11:22',373.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 (15148,10,10,'2019-08-21 15:11:22',373.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 (15149,10,10,'2019-08-21 15:11:22',373.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 (15150,10,10,'2019-08-21 15:11:22',374.937000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15151,10,10,'2019-08-21 15:11:22',375.936000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15152,10,10,'2019-08-21 15:11:22',376.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 (15153,10,10,'2019-08-21 15:11:22',376.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 (15154,10,10,'2019-08-21 15:11:22',377.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 (15155,10,10,'2019-08-21 15:11:22',378.383000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15156,10,10,'2019-08-21 15:11:22',378.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 (15157,10,10,'2019-08-21 15:11:22',379.231000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15158,10,10,'2019-08-21 15:11:22',379.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 (15159,10,10,'2019-08-21 15:11:22',380.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 (15160,10,10,'2019-08-21 15:11:22',381.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 (15161,10,10,'2019-08-21 15:11:22',381.779000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15162,10,10,'2019-08-21 15:11:22',382.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 (15163,10,10,'2019-08-21 15:11:22',382.761000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15164,10,10,'2019-08-21 15:11:22',383.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 (15165,10,10,'2019-08-21 15:11:22',384.409000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15166,10,10,'2019-08-21 15:11:22',385.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 (15167,10,10,'2019-08-21 15:11:22',385.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 (15168,10,10,'2019-08-21 15:11:22',386.339000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15169,10,10,'2019-08-21 15:11:22',386.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 (15170,10,10,'2019-08-21 15:11:22',387.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 (15171,10,10,'2019-08-21 15:11:22',388.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 (15172,10,10,'2019-08-21 15:11:22',388.505000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15173,10,10,'2019-08-21 15:11:22',389.271000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15174,10,10,'2019-08-21 15:11:22',390.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 (15175,10,10,'2019-08-21 15:11:22',391.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 (15176,10,10,'2019-08-21 15:11:22',392.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 (15177,10,10,'2019-08-21 15:11:22',392.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 (15178,10,10,'2019-08-21 15:11:22',392.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 (15179,10,10,'2019-08-21 15:11:22',393.933000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15180,10,10,'2019-08-21 15:11:22',394.831000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15181,10,10,'2019-08-21 15:11:22',395.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 (15182,10,10,'2019-08-21 15:11:22',395.697000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15183,10,10,'2019-08-21 15:11:22',396.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 (15184,10,10,'2019-08-21 15:11:22',397.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 (15185,10,10,'2019-08-21 15:11:22',398.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 (15186,10,10,'2019-08-21 15:11:22',399.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 (15187,10,10,'2019-08-21 15:11:22',400.093000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15188,10,10,'2019-08-21 15:11:22',400.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 (15189,10,10,'2019-08-21 15:11:22',400.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 (15190,10,10,'2019-08-21 15:11:22',401.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 (15191,10,10,'2019-08-21 15:11:22',401.773000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15192,10,10,'2019-08-21 15:11:22',402.540000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15193,10,10,'2019-08-21 15:11:22',403.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 (15194,10,10,'2019-08-21 15:11:22',403.389000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15195,10,10,'2019-08-21 15:11:22',404.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 (15196,10,10,'2019-08-21 15:11:22',404.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 (15197,10,10,'2019-08-21 15:11:22',405.104000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15198,10,10,'2019-08-21 15:11:22',406.069000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15199,10,10,'2019-08-21 15:11:22',406.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 (15200,10,10,'2019-08-21 15:11:22',407.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 (15201,10,10,'2019-08-21 15:11:22',407.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 (15202,10,10,'2019-08-21 15:11:22',408.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 (15203,10,10,'2019-08-21 15:11:22',409.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 (15204,10,10,'2019-08-21 15:11:22',410.414000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15205,10,10,'2019-08-21 15:11:22',410.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 (15206,10,10,'2019-08-21 15:11:22',411.430000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15207,10,10,'2019-08-21 15:11:22',412.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 (15208,10,10,'2019-08-21 15:11:22',412.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 (15209,10,10,'2019-08-21 15:11:22',413.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 (15210,10,10,'2019-08-21 15:11:22',413.943000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15211,10,10,'2019-08-21 15:11:22',414.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 (15212,10,10,'2019-08-21 15:11:22',415.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 (15213,10,10,'2019-08-21 15:11:22',416.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 (15214,10,10,'2019-08-21 15:11:22',416.674000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15215,10,10,'2019-08-21 15:11:22',417.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 (15216,10,10,'2019-08-21 15:11:22',418.556000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15217,10,10,'2019-08-21 15:11:22',418.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 (15218,10,10,'2019-08-21 15:11:22',419.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 (15219,10,10,'2019-08-21 15:11:22',419.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 (15220,10,10,'2019-08-21 15:11:22',420.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 (15221,10,10,'2019-08-21 15:11:22',421.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 (15222,10,10,'2019-08-21 15:11:22',421.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 (15223,10,10,'2019-08-21 15:11:22',422.917000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15224,10,10,'2019-08-21 15:11:22',423.750000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15225,10,10,'2019-08-21 15:11:22',424.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 (15226,10,10,'2019-08-21 15:11:22',424.615000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15227,10,10,'2019-08-21 15:11:22',424.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 (15228,10,10,'2019-08-21 15:11:22',425.398000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15229,10,10,'2019-08-21 15:11:22',426.181000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15230,10,10,'2019-08-21 15:11:22',427.096000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15231,10,10,'2019-08-21 15:11:22',427.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 (15232,10,10,'2019-08-21 15:11:22',428.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 (15233,10,10,'2019-08-21 15:11:22',429.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 (15234,10,10,'2019-08-21 15:11:22',430.216000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15235,10,10,'2019-08-21 15:11:22',430.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 (15236,10,10,'2019-08-21 15:11:22',431.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 (15237,10,10,'2019-08-21 15:11:22',432.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 (15238,10,10,'2019-08-21 15:11:22',432.760000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15239,10,10,'2019-08-21 15:11:22',433.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 (15240,10,10,'2019-08-21 15:11:22',434.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 (15241,10,10,'2019-08-21 15:11:22',435.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 (15242,10,10,'2019-08-21 15:11:22',435.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 (15243,10,10,'2019-08-21 15:11:22',436.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 (15244,10,10,'2019-08-21 15:11:22',436.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 (15245,10,10,'2019-08-21 15:11:22',437.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 (15246,10,10,'2019-08-21 15:11:22',438.130000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15247,10,10,'2019-08-21 15:11:22',438.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 (15248,10,10,'2019-08-21 15:11:22',439.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 (15249,10,10,'2019-08-21 15:11:22',439.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 (15250,10,10,'2019-08-21 15:11:22',440.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 (15251,10,10,'2019-08-21 15:11:22',440.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 (15252,10,10,'2019-08-21 15:11:22',441.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 (15253,10,10,'2019-08-21 15:11:22',442.113000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15254,10,10,'2019-08-21 15:11:22',442.995000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15255,10,10,'2019-08-21 15:11:22',443.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 (15256,10,10,'2019-08-21 15:11:22',444.610000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15257,10,10,'2019-08-21 15:11:22',445.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 (15258,10,10,'2019-08-21 15:11:22',445.781000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15259,10,10,'2019-08-21 15:11:22',446.292000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15260,10,10,'2019-08-21 15:11:22',446.599000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15261,10,10,'2019-08-21 15:11:22',447.157000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15262,10,10,'2019-08-21 15:11:22',448.140000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15263,10,10,'2019-08-21 15:11:22',449.072000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15264,10,10,'2019-08-21 15:11:22',449.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 (15265,10,10,'2019-08-21 15:11:22',450.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 (15266,10,10,'2019-08-21 15:11:22',450.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 (15267,10,10,'2019-08-21 15:11:22',451.050000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15268,10,10,'2019-08-21 15:11:22',451.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 (15269,10,10,'2019-08-21 15:11:22',452.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 (15270,10,10,'2019-08-21 15:11:22',453.468000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15271,10,10,'2019-08-21 15:11:22',454.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 (15272,10,10,'2019-08-21 15:11:22',454.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 (15273,10,10,'2019-08-21 15:11:22',455.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 (15274,10,10,'2019-08-21 15:11:22',456.114000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15275,10,10,'2019-08-21 15:11:22',456.980000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15276,10,10,'2019-08-21 15:11:22',457.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 (15277,10,10,'2019-08-21 15:11:22',458.176000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15278,10,10,'2019-08-21 15:11:22',458.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 (15279,10,10,'2019-08-21 15:11:22',459.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 (15280,10,10,'2019-08-21 15:11:22',460.626000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15281,10,10,'2019-08-21 15:11:22',461.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 (15282,10,10,'2019-08-21 15:11:22',462.374000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15283,10,10,'2019-08-21 15:11:22',462.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 (15284,10,10,'2019-08-21 15:11:22',463.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 (15285,10,10,'2019-08-21 15:11:22',463.688000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15286,10,10,'2019-08-21 15:11:22',464.272000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15287,10,10,'2019-08-21 15:11:22',465.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 (15288,10,10,'2019-08-21 15:11:22',465.971000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15289,10,10,'2019-08-21 15:11:22',466.803000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15290,10,10,'2019-08-21 15:11:22',467.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 (15291,10,10,'2019-08-21 15:11:22',467.568000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15292,10,10,'2019-08-21 15:11:22',468.401000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15293,10,10,'2019-08-21 15:11:22',469.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 (15294,10,10,'2019-08-21 15:11:22',469.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 (15295,10,10,'2019-08-21 15:11:22',470.133000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15296,10,10,'2019-08-21 15:11:22',470.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 (15297,10,10,'2019-08-21 15:11:22',470.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 (15298,10,10,'2019-08-21 15:11:22',471.288000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15299,10,10,'2019-08-21 15:11:22',471.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 (15300,10,10,'2019-08-21 15:11:22',472.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 (15301,10,10,'2019-08-21 15:11:22',473.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 (15302,10,10,'2019-08-21 15:11:22',474.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 (15303,10,10,'2019-08-21 15:11:22',475.443000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15304,10,10,'2019-08-21 15:11:22',476.343000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15305,10,10,'2019-08-21 15:11:22',477.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 (15306,10,10,'2019-08-21 15:11:22',477.586000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15307,10,10,'2019-08-21 15:11:22',477.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 (15308,10,10,'2019-08-21 15:11:22',478.303000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15309,10,10,'2019-08-21 15:11:22',478.790000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15310,10,10,'2019-08-21 15:11:22',479.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 (15311,10,10,'2019-08-21 15:11:22',480.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 (15312,10,10,'2019-08-21 15:11:22',481.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 (15313,10,10,'2019-08-21 15:11:22',482.485000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15314,10,10,'2019-08-21 15:11:22',482.825000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15315,10,10,'2019-08-21 15:11:22',483.435000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15316,10,10,'2019-08-21 15:11:22',483.733000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15317,10,10,'2019-08-21 15:11:22',484.351000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15318,10,10,'2019-08-21 15:11:22',485.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 (15319,10,10,'2019-08-21 15:11:22',486.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 (15320,10,10,'2019-08-21 15:11:22',487.098000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15321,10,10,'2019-08-21 15:11:22',487.913000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15322,10,10,'2019-08-21 15:11:22',488.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 (15323,10,10,'2019-08-21 15:11:22',488.796000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15324,10,10,'2019-08-21 15:11:22',489.728000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15325,10,10,'2019-08-21 15:11:22',490.123000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15326,10,10,'2019-08-21 15:11:22',490.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 (15327,10,10,'2019-08-21 15:11:22',491.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 (15328,10,10,'2019-08-21 15:11:22',491.879000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15329,10,10,'2019-08-21 15:11:22',492.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 (15330,10,10,'2019-08-21 15:11:22',493.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 (15331,10,10,'2019-08-21 15:11:22',493.655000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15332,10,10,'2019-08-21 15:11:22',494.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 (15333,10,10,'2019-08-21 15:11:22',495.105000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15334,10,10,'2019-08-21 15:11:22',496.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 (15335,10,10,'2019-08-21 15:11:22',497.069000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15336,10,10,'2019-08-21 15:11:22',498.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 (15337,10,10,'2019-08-21 15:11:22',498.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 (15338,10,10,'2019-08-21 15:11:22',498.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 (15339,10,10,'2019-08-21 15:11:22',499.634000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15340,10,10,'2019-08-21 15:11:22',500.005000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15341,10,10,'2019-08-21 15:11:22',500.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 (15342,10,10,'2019-08-21 15:11:22',501.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 (15343,10,10,'2019-08-21 15:11:22',502.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 (15344,10,10,'2019-08-21 15:11:22',503.279000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15345,10,10,'2019-08-21 15:11:22',504.079000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15346,10,10,'2019-08-21 15:11:22',504.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 (15347,10,10,'2019-08-21 15:11:22',505.044000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15348,10,10,'2019-08-21 15:11:22',505.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 (15349,10,10,'2019-08-21 15:11:22',505.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 (15350,10,10,'2019-08-21 15:11:22',506.810000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15351,10,10,'2019-08-21 15:11:22',507.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 (15352,10,10,'2019-08-21 15:11:22',508.724000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15353,10,10,'2019-08-21 15:11:22',509.099000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15354,10,10,'2019-08-21 15:11:22',509.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 (15355,10,10,'2019-08-21 15:11:22',510.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 (15356,10,10,'2019-08-21 15:11:22',510.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 (15357,10,10,'2019-08-21 15:11:22',511.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 (15358,10,10,'2019-08-21 15:11:22',512.286000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15359,10,10,'2019-08-21 15:11:22',513.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 (15360,10,10,'2019-08-21 15:11:22',513.550000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15361,10,10,'2019-08-21 15:11:22',514.201000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15362,10,10,'2019-08-21 15:11:22',515.050000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15363,10,10,'2019-08-21 15:11:22',515.850000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15364,10,10,'2019-08-21 15:11:22',516.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 (15365,10,10,'2019-08-21 15:11:22',517.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 (15366,10,10,'2019-08-21 15:11:22',518.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 (15367,10,10,'2019-08-21 15:11:22',518.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 (15368,10,10,'2019-08-21 15:11:22',519.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 (15369,10,10,'2019-08-21 15:11:22',519.758000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15370,10,10,'2019-08-21 15:11:22',520.277000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15371,10,10,'2019-08-21 15:11:22',521.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 (15372,10,10,'2019-08-21 15:11:22',522.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 (15373,10,10,'2019-08-21 15:11:22',522.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 (15374,10,10,'2019-08-21 15:11:22',523.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 (15375,10,10,'2019-08-21 15:11:22',523.791000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15376,10,10,'2019-08-21 15:11:22',524.739000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15377,10,10,'2019-08-21 15:11:22',525.572000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15378,10,10,'2019-08-21 15:11:22',526.504000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15379,10,10,'2019-08-21 15:11:22',526.904000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15380,10,10,'2019-08-21 15:11:22',527.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 (15381,10,10,'2019-08-21 15:11:22',528.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 (15382,10,10,'2019-08-21 15:11:22',528.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 (15383,10,10,'2019-08-21 15:11:22',529.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 (15384,10,10,'2019-08-21 15:11:22',530.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 (15385,10,10,'2019-08-21 15:11:22',531.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 (15386,10,10,'2019-08-21 15:11:22',531.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 (15387,10,10,'2019-08-21 15:11:22',532.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 (15388,10,10,'2019-08-21 15:11:22',533.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 (15389,10,10,'2019-08-21 15:11:22',533.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 (15390,10,10,'2019-08-21 15:11:22',533.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 (15391,10,10,'2019-08-21 15:11:22',534.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 (15392,10,10,'2019-08-21 15:11:22',535.744000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15393,10,10,'2019-08-21 15:11:22',536.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 (15394,10,10,'2019-08-21 15:11:22',537.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 (15395,10,10,'2019-08-21 15:11:22',537.625000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15396,10,10,'2019-08-21 15:11:22',538.007000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15397,10,10,'2019-08-21 15:11:22',538.574000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15398,10,10,'2019-08-21 15:11:22',539.440000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15399,10,10,'2019-08-21 15:11:22',540.239000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15400,10,10,'2019-08-21 15:11:22',541.038000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15401,10,10,'2019-08-21 15:11:22',541.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 (15402,10,10,'2019-08-21 15:11:22',542.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 (15403,10,10,'2019-08-21 15:11:22',543.216000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15404,10,10,'2019-08-21 15:11:22',543.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 (15405,10,10,'2019-08-21 15:11:22',544.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 (15406,10,10,'2019-08-21 15:11:22',544.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 (15407,10,10,'2019-08-21 15:11:22',577.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 (15408,10,10,'2019-08-21 15:11:22',584.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 (15409,10,10,'2019-08-21 15:11:22',584.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 (15410,10,10,'2019-08-21 15:11:22',585.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 (15411,10,10,'2019-08-21 15:11:22',585.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 (15412,10,10,'2019-08-21 15:11:22',586.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 (15413,10,10,'2019-08-21 15:11:22',587.248000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15414,10,10,'2019-08-21 15:11:22',587.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 (15415,10,10,'2019-08-21 15:11:22',588.681000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15416,10,10,'2019-08-21 15:11:22',589.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 (15417,10,10,'2019-08-21 15:11:22',589.862000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15418,10,10,'2019-08-21 15:11:22',590.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 (15419,10,10,'2019-08-21 15:11:22',591.161000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15420,10,10,'2019-08-21 15:11:22',592.160000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15421,10,10,'2019-08-21 15:11:22',592.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 (15422,10,10,'2019-08-21 15:11:22',593.741000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15423,10,10,'2019-08-21 15:11:22',594.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 (15424,10,10,'2019-08-21 15:11:22',594.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 (15425,10,10,'2019-08-21 15:11:22',595.406000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15426,10,10,'2019-08-21 15:11:22',595.837000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15427,10,10,'2019-08-21 15:11:22',596.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 (15428,10,10,'2019-08-21 15:11:22',597.171000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15429,10,10,'2019-08-21 15:11:22',598.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 (15430,10,10,'2019-08-21 15:11:22',598.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 (15431,10,10,'2019-08-21 15:11:22',598.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 (15432,10,10,'2019-08-21 15:11:22',599.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 (15433,10,10,'2019-08-21 15:11:22',600.768000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15434,10,10,'2019-08-21 15:11:22',601.137000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15435,10,10,'2019-08-21 15:11:22',601.616000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15436,10,10,'2019-08-21 15:11:22',602.415000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15437,10,10,'2019-08-21 15:11:22',602.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 (15438,10,10,'2019-08-21 15:11:22',603.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 (15439,10,10,'2019-08-21 15:11:22',604.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 (15440,10,10,'2019-08-21 15:11:22',605.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 (15441,10,10,'2019-08-21 15:11:22',605.995000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15442,10,10,'2019-08-21 15:11:22',606.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 (15443,10,10,'2019-08-21 15:11:22',607.293000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15444,10,10,'2019-08-21 15:11:22',607.660000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15445,10,10,'2019-08-21 15:11:22',608.476000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15446,10,10,'2019-08-21 15:11:22',608.838000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15447,10,10,'2019-08-21 15:11:22',609.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 (15448,10,10,'2019-08-21 15:11:22',610.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 (15449,10,10,'2019-08-21 15:11:22',611.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 (15450,10,10,'2019-08-21 15:11:22',611.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 (15451,10,10,'2019-08-21 15:11:22',612.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 (15452,10,10,'2019-08-21 15:11:22',612.954000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15453,10,10,'2019-08-21 15:11:22',613.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 (15454,10,10,'2019-08-21 15:11:22',614.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 (15455,10,10,'2019-08-21 15:11:22',614.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 (15456,10,10,'2019-08-21 15:11:22',615.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 (15457,10,10,'2019-08-21 15:11:22',616.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 (15458,10,10,'2019-08-21 15:11:22',616.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 (15459,10,10,'2019-08-21 15:11:22',617.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 (15460,10,10,'2019-08-21 15:11:22',617.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 (15461,10,10,'2019-08-21 15:11:22',618.148000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15462,10,10,'2019-08-21 15:11:22',619.048000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15463,10,10,'2019-08-21 15:11:22',619.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 (15464,10,10,'2019-08-21 15:11:22',620.796000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15465,10,10,'2019-08-21 15:11:22',621.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 (15466,10,10,'2019-08-21 15:11:22',622.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 (15467,10,10,'2019-08-21 15:11:22',623.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 (15468,10,10,'2019-08-21 15:11:22',624.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 (15469,10,10,'2019-08-21 15:11:22',624.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 (15470,10,10,'2019-08-21 15:11:22',625.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 (15471,10,10,'2019-08-21 15:11:22',625.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 (15472,10,10,'2019-08-21 15:11:22',626.473000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15473,10,10,'2019-08-21 15:11:22',627.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 (15474,10,10,'2019-08-21 15:11:22',627.732000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15475,10,10,'2019-08-21 15:11:22',628.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 (15476,10,10,'2019-08-21 15:11:22',629.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 (15477,10,10,'2019-08-21 15:11:22',630.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 (15478,10,10,'2019-08-21 15:11:22',630.428000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15479,10,10,'2019-08-21 15:11:22',630.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 (15480,10,10,'2019-08-21 15:11:22',631.850000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15481,10,10,'2019-08-21 15:11:22',632.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 (15482,10,10,'2019-08-21 15:11:22',633.415000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15483,10,10,'2019-08-21 15:11:22',633.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 (15484,10,10,'2019-08-21 15:11:22',634.397000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15485,10,10,'2019-08-21 15:11:22',635.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 (15486,10,10,'2019-08-21 15:11:22',636.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 (15487,10,10,'2019-08-21 15:11:22',636.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 (15488,10,10,'2019-08-21 15:11:22',637.244000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15489,10,10,'2019-08-21 15:11:22',638.160000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15490,10,10,'2019-08-21 15:11:22',639.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 (15491,10,10,'2019-08-21 15:11:22',640.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 (15492,10,10,'2019-08-21 15:11:22',640.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 (15493,10,10,'2019-08-21 15:11:22',641.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 (15494,10,10,'2019-08-21 15:11:22',642.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 (15495,10,10,'2019-08-21 15:11:22',642.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 (15496,10,10,'2019-08-21 15:11:22',643.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 (15497,10,10,'2019-08-21 15:11:22',644.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 (15498,10,10,'2019-08-21 15:11:22',645.235000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15499,10,10,'2019-08-21 15:11:22',645.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 (15500,10,10,'2019-08-21 15:11:22',646.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 (15501,10,10,'2019-08-21 15:11:22',647.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 (15502,10,10,'2019-08-21 15:11:22',647.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 (15503,10,10,'2019-08-21 15:11:22',647.799000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15504,10,10,'2019-08-21 15:11:22',648.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 (15505,10,10,'2019-08-21 15:11:22',649.464000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15506,10,10,'2019-08-21 15:11:22',650.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 (15507,10,10,'2019-08-21 15:11:22',650.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 (15508,10,10,'2019-08-21 15:11:22',651.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 (15509,10,10,'2019-08-21 15:11:22',651.665000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15510,10,10,'2019-08-21 15:11:22',652.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 (15511,10,10,'2019-08-21 15:11:22',653.077000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15512,10,10,'2019-08-21 15:11:22',653.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 (15513,10,10,'2019-08-21 15:11:22',654.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 (15514,10,10,'2019-08-21 15:11:22',655.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 (15515,10,10,'2019-08-21 15:11:22',655.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 (15516,10,10,'2019-08-21 15:11:22',656.523000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15517,10,10,'2019-08-21 15:11:22',657.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 (15518,10,10,'2019-08-21 15:11:22',657.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 (15519,10,10,'2019-08-21 15:11:22',658.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 (15520,10,10,'2019-08-21 15:11:22',658.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 (15521,10,10,'2019-08-21 15:11:22',659.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 (15522,10,10,'2019-08-21 15:11:22',659.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 (15523,10,10,'2019-08-21 15:11:22',660.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 (15524,10,10,'2019-08-21 15:11:22',661.395000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15525,10,10,'2019-08-21 15:11:22',661.801000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15526,10,10,'2019-08-21 15:11:22',662.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 (15527,10,10,'2019-08-21 15:11:22',663.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 (15528,10,10,'2019-08-21 15:11:22',664.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 (15529,10,10,'2019-08-21 15:11:22',664.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 (15530,10,10,'2019-08-21 15:11:22',665.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 (15531,10,10,'2019-08-21 15:11:22',666.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 (15532,10,10,'2019-08-21 15:11:22',666.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 (15533,10,10,'2019-08-21 15:11:22',667.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 (15534,10,10,'2019-08-21 15:11:22',668.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 (15535,10,10,'2019-08-21 15:11:22',668.571000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15536,10,10,'2019-08-21 15:11:22',668.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 (15537,10,10,'2019-08-21 15:11:22',669.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 (15538,10,10,'2019-08-21 15:11:22',670.176000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15539,10,10,'2019-08-21 15:11:22',670.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 (15540,10,10,'2019-08-21 15:11:22',671.457000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15541,10,10,'2019-08-21 15:11:22',672.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 (15542,10,10,'2019-08-21 15:11:22',673.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 (15543,10,10,'2019-08-21 15:11:22',674.304000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15544,10,10,'2019-08-21 15:11:22',675.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 (15545,10,10,'2019-08-21 15:11:22',675.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 (15546,10,10,'2019-08-21 15:11:22',676.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 (15547,10,10,'2019-08-21 15:11:22',676.718000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15548,10,10,'2019-08-21 15:11:22',677.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 (15549,10,10,'2019-08-21 15:11:22',677.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 (15550,10,10,'2019-08-21 15:11:22',678.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 (15551,10,10,'2019-08-21 15:11:22',679.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 (15552,10,10,'2019-08-21 15:11:22',679.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 (15553,10,10,'2019-08-21 15:11:22',679.831000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15554,10,10,'2019-08-21 15:11:22',680.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 (15555,10,10,'2019-08-21 15:11:22',681.712000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15556,10,10,'2019-08-21 15:11:22',682.661000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15557,10,10,'2019-08-21 15:11:22',682.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 (15558,10,10,'2019-08-21 15:11:22',683.660000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15559,10,10,'2019-08-21 15:11:22',684.492000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15560,10,10,'2019-08-21 15:11:22',685.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 (15561,10,10,'2019-08-21 15:11:22',686.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 (15562,10,10,'2019-08-21 15:11:22',687.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 (15563,10,10,'2019-08-21 15:11:22',687.679000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15564,10,10,'2019-08-21 15:11:22',688.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 (15565,10,10,'2019-08-21 15:11:22',689.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 (15566,10,10,'2019-08-21 15:11:22',689.374000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15567,10,10,'2019-08-21 15:11:22',689.804000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15568,10,10,'2019-08-21 15:11:22',690.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 (15569,10,10,'2019-08-21 15:11:22',691.131000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15570,10,10,'2019-08-21 15:11:22',691.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 (15571,10,10,'2019-08-21 15:11:22',691.907000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15572,10,10,'2019-08-21 15:11:22',692.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 (15573,10,10,'2019-08-21 15:11:22',693.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 (15574,10,10,'2019-08-21 15:11:22',694.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 (15575,10,10,'2019-08-21 15:11:22',695.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 (15576,10,10,'2019-08-21 15:11:22',696.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 (15577,10,10,'2019-08-21 15:11:22',696.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 (15578,10,10,'2019-08-21 15:11:22',697.878000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15579,10,10,'2019-08-21 15:11:22',698.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 (15580,10,10,'2019-08-21 15:11:22',698.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 (15581,10,10,'2019-08-21 15:11:22',699.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 (15582,10,10,'2019-08-21 15:11:22',699.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 (15583,10,10,'2019-08-21 15:11:22',700.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 (15584,10,10,'2019-08-21 15:11:22',701.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 (15585,10,10,'2019-08-21 15:11:22',702.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 (15586,10,10,'2019-08-21 15:11:22',703.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 (15587,10,10,'2019-08-21 15:11:22',703.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 (15588,10,10,'2019-08-21 15:11:22',704.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 (15589,10,10,'2019-08-21 15:11:22',704.696000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15590,10,10,'2019-08-21 15:11:22',705.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 (15591,10,10,'2019-08-21 15:11:22',705.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 (15592,10,10,'2019-08-21 15:11:22',706.901000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15593,10,10,'2019-08-21 15:11:22',707.717000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15594,10,10,'2019-08-21 15:11:22',708.239000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15595,10,10,'2019-08-21 15:11:22',708.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 (15596,10,10,'2019-08-21 15:11:22',709.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 (15597,10,10,'2019-08-21 15:11:22',709.516000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15598,10,10,'2019-08-21 15:11:22',710.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 (15599,10,10,'2019-08-21 15:11:22',711.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 (15600,10,10,'2019-08-21 15:11:22',711.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 (15601,10,10,'2019-08-21 15:11:22',712.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 (15602,10,10,'2019-08-21 15:11:22',713.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 (15603,10,10,'2019-08-21 15:11:22',713.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 (15604,10,10,'2019-08-21 15:11:22',714.677000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15605,10,10,'2019-08-21 15:11:22',715.072000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15606,10,10,'2019-08-21 15:11:22',715.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 (15607,10,10,'2019-08-21 15:11:22',716.458000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15608,10,10,'2019-08-21 15:11:22',717.423000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15609,10,10,'2019-08-21 15:11:22',717.889000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15610,10,10,'2019-08-21 15:11:22',718.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 (15611,10,10,'2019-08-21 15:11:22',719.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 (15612,10,10,'2019-08-21 15:11:22',720.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 (15613,10,10,'2019-08-21 15:11:22',720.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 (15614,10,10,'2019-08-21 15:11:22',721.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 (15615,10,10,'2019-08-21 15:11:22',721.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 (15616,10,10,'2019-08-21 15:11:22',722.319000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15617,10,10,'2019-08-21 15:11:22',722.718000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15618,10,10,'2019-08-21 15:11:22',723.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 (15619,10,10,'2019-08-21 15:11:22',723.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 (15620,10,10,'2019-08-21 15:11:22',724.549000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15621,10,10,'2019-08-21 15:11:22',725.397000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15622,10,10,'2019-08-21 15:11:22',726.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 (15623,10,10,'2019-08-21 15:11:22',727.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 (15624,10,10,'2019-08-21 15:11:22',727.729000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15625,10,10,'2019-08-21 15:11:22',728.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 (15626,10,10,'2019-08-21 15:11:22',729.193000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15627,10,10,'2019-08-21 15:11:22',730.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 (15628,10,10,'2019-08-21 15:11:22',730.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 (15629,10,10,'2019-08-21 15:11:22',731.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 (15630,10,10,'2019-08-21 15:11:22',731.708000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15631,10,10,'2019-08-21 15:11:22',732.557000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15632,10,10,'2019-08-21 15:11:22',733.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 (15633,10,10,'2019-08-21 15:11:22',733.355000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15634,10,10,'2019-08-21 15:11:22',733.906000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15635,10,10,'2019-08-21 15:11:22',734.255000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15636,10,10,'2019-08-21 15:11:22',735.221000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15637,10,10,'2019-08-21 15:11:22',736.220000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15638,10,10,'2019-08-21 15:11:22',737.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 (15639,10,10,'2019-08-21 15:11:22',737.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 (15640,10,10,'2019-08-21 15:11:22',738.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 (15641,10,10,'2019-08-21 15:11:22',738.950000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15642,10,10,'2019-08-21 15:11:22',739.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 (15643,10,10,'2019-08-21 15:11:22',740.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 (15644,10,10,'2019-08-21 15:11:22',741.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 (15645,10,10,'2019-08-21 15:11:22',742.362000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15646,10,10,'2019-08-21 15:11:22',742.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 (15647,10,10,'2019-08-21 15:11:22',743.245000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15648,10,10,'2019-08-21 15:11:22',744.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 (15649,10,10,'2019-08-21 15:11:22',745.060000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15650,10,10,'2019-08-21 15:11:22',745.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 (15651,10,10,'2019-08-21 15:11:22',746.251000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15652,10,10,'2019-08-21 15:11:22',746.625000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15653,10,10,'2019-08-21 15:11:22',747.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 (15654,10,10,'2019-08-21 15:11:22',747.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 (15655,10,10,'2019-08-21 15:11:22',748.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 (15656,10,10,'2019-08-21 15:11:22',749.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 (15657,10,10,'2019-08-21 15:11:22',750.388000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15658,10,10,'2019-08-21 15:11:22',751.253000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15659,10,10,'2019-08-21 15:11:22',751.661000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15660,10,10,'2019-08-21 15:11:22',752.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 (15661,10,10,'2019-08-21 15:11:22',752.590000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15662,10,10,'2019-08-21 15:11:22',753.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 (15663,10,10,'2019-08-21 15:11:22',753.917000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15664,10,10,'2019-08-21 15:11:22',754.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 (15665,10,10,'2019-08-21 15:11:22',754.866000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15666,10,10,'2019-08-21 15:11:22',755.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 (15667,10,10,'2019-08-21 15:11:22',756.563000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15668,10,10,'2019-08-21 15:11:22',757.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 (15669,10,10,'2019-08-21 15:11:22',757.707000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15670,10,10,'2019-08-21 15:11:22',758.179000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15671,10,10,'2019-08-21 15:11:22',759.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 (15672,10,10,'2019-08-21 15:11:22',760.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 (15673,10,10,'2019-08-21 15:11:22',761.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 (15674,10,10,'2019-08-21 15:11:22',761.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 (15675,10,10,'2019-08-21 15:11:22',761.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 (15676,10,10,'2019-08-21 15:11:22',762.330000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15677,10,10,'2019-08-21 15:11:22',762.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 (15678,10,10,'2019-08-21 15:11:22',763.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 (15679,10,10,'2019-08-21 15:11:22',764.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 (15680,10,10,'2019-08-21 15:11:22',764.894000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15681,10,10,'2019-08-21 15:11:22',765.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 (15682,10,10,'2019-08-21 15:11:22',766.536000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15683,10,10,'2019-08-21 15:11:22',767.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 (15684,10,10,'2019-08-21 15:11:22',768.218000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15685,10,10,'2019-08-21 15:11:22',769.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 (15686,10,10,'2019-08-21 15:11:22',769.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 (15687,10,10,'2019-08-21 15:11:22',770.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 (15688,10,10,'2019-08-21 15:11:22',770.932000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15689,10,10,'2019-08-21 15:11:22',771.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 (15690,10,10,'2019-08-21 15:11:22',771.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 (15691,10,10,'2019-08-21 15:11:22',772.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 (15692,10,10,'2019-08-21 15:11:22',773.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 (15693,10,10,'2019-08-21 15:11:22',774.527000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15694,10,10,'2019-08-21 15:11:22',774.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 (15695,10,10,'2019-08-21 15:11:22',775.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 (15696,10,10,'2019-08-21 15:11:22',776.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 (15697,10,10,'2019-08-21 15:11:22',776.309000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15698,10,10,'2019-08-21 15:11:22',777.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 (15699,10,10,'2019-08-21 15:11:22',778.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 (15700,10,10,'2019-08-21 15:11:22',779.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 (15701,10,10,'2019-08-21 15:11:22',780.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 (15702,10,10,'2019-08-21 15:11:22',780.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 (15703,10,10,'2019-08-21 15:11:22',781.037000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15704,10,10,'2019-08-21 15:11:22',781.457000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15705,10,10,'2019-08-21 15:11:22',781.953000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15706,10,10,'2019-08-21 15:11:22',782.719000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15707,10,10,'2019-08-21 15:11:22',783.551000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15708,10,10,'2019-08-21 15:11:22',784.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 (15709,10,10,'2019-08-21 15:11:22',784.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 (15710,10,10,'2019-08-21 15:11:22',785.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 (15711,10,10,'2019-08-21 15:11:22',786.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 (15712,10,10,'2019-08-21 15:11:22',787.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 (15713,10,10,'2019-08-21 15:11:22',787.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 (15714,10,10,'2019-08-21 15:11:22',788.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 (15715,10,10,'2019-08-21 15:11:22',789.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 (15716,10,10,'2019-08-21 15:11:22',789.777000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15717,10,10,'2019-08-21 15:11:22',790.760000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15718,10,10,'2019-08-21 15:11:22',791.056000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15719,10,10,'2019-08-21 15:11:22',791.676000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15720,10,10,'2019-08-21 15:11:22',792.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 (15721,10,10,'2019-08-21 15:11:22',793.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 (15722,10,10,'2019-08-21 15:11:22',794.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 (15723,10,10,'2019-08-21 15:11:22',795.172000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15724,10,10,'2019-08-21 15:11:22',795.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 (15725,10,10,'2019-08-21 15:11:22',795.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 (15726,10,10,'2019-08-21 15:11:22',796.787000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15727,10,10,'2019-08-21 15:11:22',797.173000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15728,10,10,'2019-08-21 15:11:22',797.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 (15729,10,10,'2019-08-21 15:11:22',798.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 (15730,10,10,'2019-08-21 15:11:22',798.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 (15731,10,10,'2019-08-21 15:11:22',799.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 (15732,10,10,'2019-08-21 15:11:22',800.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 (15733,10,10,'2019-08-21 15:11:22',801.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 (15734,10,10,'2019-08-21 15:11:22',802.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 (15735,10,10,'2019-08-21 15:11:22',802.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 (15736,10,10,'2019-08-21 15:11:22',803.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 (15737,10,10,'2019-08-21 15:11:22',804.350000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15738,10,10,'2019-08-21 15:11:22',804.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 (15739,10,10,'2019-08-21 15:11:22',805.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 (15740,10,10,'2019-08-21 15:11:22',805.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 (15741,10,10,'2019-08-21 15:11:22',806.442000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15742,10,10,'2019-08-21 15:11:22',807.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 (15743,10,10,'2019-08-21 15:11:22',808.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 (15744,10,10,'2019-08-21 15:11:22',809.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 (15745,10,10,'2019-08-21 15:11:22',809.547000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15746,10,10,'2019-08-21 15:11:22',810.205000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15747,10,10,'2019-08-21 15:11:22',810.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 (15748,10,10,'2019-08-21 15:11:22',811.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 (15749,10,10,'2019-08-21 15:11:22',812.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 (15750,10,10,'2019-08-21 15:11:22',812.969000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15751,10,10,'2019-08-21 15:11:22',813.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 (15752,10,10,'2019-08-21 15:11:22',813.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 (15753,10,10,'2019-08-21 15:11:22',814.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 (15754,10,10,'2019-08-21 15:11:22',815.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 (15755,10,10,'2019-08-21 15:11:22',816.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 (15756,10,10,'2019-08-21 15:11:22',816.915000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15757,10,10,'2019-08-21 15:11:22',817.331000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15758,10,10,'2019-08-21 15:11:22',818.297000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15759,10,10,'2019-08-21 15:11:22',818.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 (15760,10,10,'2019-08-21 15:11:22',819.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 (15761,10,10,'2019-08-21 15:11:22',820.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 (15762,10,10,'2019-08-21 15:11:22',821.110000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15763,10,10,'2019-08-21 15:11:22',822.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 (15764,10,10,'2019-08-21 15:11:22',822.477000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15765,10,10,'2019-08-21 15:11:22',822.875000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15766,10,10,'2019-08-21 15:11:22',823.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 (15767,10,10,'2019-08-21 15:11:22',824.656000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15768,10,10,'2019-08-21 15:11:22',825.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 (15769,10,10,'2019-08-21 15:11:22',825.572000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15770,10,10,'2019-08-21 15:11:22',826.371000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15771,10,10,'2019-08-21 15:11:22',827.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 (15772,10,10,'2019-08-21 15:11:22',828.319000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15773,10,10,'2019-08-21 15:11:22',828.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 (15774,10,10,'2019-08-21 15:11:22',829.317000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15775,10,10,'2019-08-21 15:11:22',830.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 (15776,10,10,'2019-08-21 15:11:22',830.531000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15777,10,10,'2019-08-21 15:11:22',831.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 (15778,10,10,'2019-08-21 15:11:22',831.898000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15779,10,10,'2019-08-21 15:11:22',832.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 (15780,10,10,'2019-08-21 15:11:22',833.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 (15781,10,10,'2019-08-21 15:11:22',833.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 (15782,10,10,'2019-08-21 15:11:22',834.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 (15783,10,10,'2019-08-21 15:11:22',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 (15784,10,10,'2019-08-21 15:11:22',836.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 (15785,10,10,'2019-08-21 15:11:22',836.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 (15786,10,10,'2019-08-21 15:11:22',836.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 (15787,10,10,'2019-08-21 15:11:22',837.385000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15788,10,10,'2019-08-21 15:11:22',837.642000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15789,10,10,'2019-08-21 15:11:22',838.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 (15790,10,10,'2019-08-21 15:11:22',839.390000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15791,10,10,'2019-08-21 15:11:22',840.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 (15792,10,10,'2019-08-21 15:11:22',840.938000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15793,10,10,'2019-08-21 15:11:22',841.342000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15794,10,10,'2019-08-21 15:11:22',841.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 (15795,10,10,'2019-08-21 15:11:22',842.786000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15796,10,10,'2019-08-21 15:11:22',843.652000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15797,10,10,'2019-08-21 15:11:22',844.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 (15798,10,10,'2019-08-21 15:11:22',844.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 (15799,10,10,'2019-08-21 15:11:22',845.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 (15800,10,10,'2019-08-21 15:11:22',846.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 (15801,10,10,'2019-08-21 15:11:22',846.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 (15802,10,10,'2019-08-21 15:11:22',846.641000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15803,10,10,'2019-08-21 15:11:22',847.065000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15804,10,10,'2019-08-21 15:11:22',847.831000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15805,10,10,'2019-08-21 15:11:22',848.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 (15806,10,10,'2019-08-21 15:11:22',859.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 (15807,10,10,'2019-08-21 15:11:22',866.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 (15808,10,10,'2019-08-21 15:11:22',866.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 (15809,10,10,'2019-08-21 15:11:22',866.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 (15810,10,10,'2019-08-21 15:11:22',867.809000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15811,10,10,'2019-08-21 15:11:22',868.791000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15812,10,10,'2019-08-21 15:11:22',869.623000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15813,10,10,'2019-08-21 15:11:22',870.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 (15814,10,10,'2019-08-21 15:11:22',871.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 (15815,10,10,'2019-08-21 15:11:22',871.288000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15816,10,10,'2019-08-21 15:11:22',872.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 (15817,10,10,'2019-08-21 15:11:22',873.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 (15818,10,10,'2019-08-21 15:11:22',873.373000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15819,10,10,'2019-08-21 15:11:22',873.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 (15820,10,10,'2019-08-21 15:11:22',874.784000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15821,10,10,'2019-08-21 15:11:22',875.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 (15822,10,10,'2019-08-21 15:11:22',875.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 (15823,10,10,'2019-08-21 15:11:22',876.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 (15824,10,10,'2019-08-21 15:11:22',877.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 (15825,10,10,'2019-08-21 15:11:22',877.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 (15826,10,10,'2019-08-21 15:11:22',878.147000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15827,10,10,'2019-08-21 15:11:22',878.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 (15828,10,10,'2019-08-21 15:11:22',879.945000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15829,10,10,'2019-08-21 15:11:22',880.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 (15830,10,10,'2019-08-21 15:11:22',881.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 (15831,10,10,'2019-08-21 15:11:22',881.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 (15832,10,10,'2019-08-21 15:11:22',881.983000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15833,10,10,'2019-08-21 15:11:22',882.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 (15834,10,10,'2019-08-21 15:11:22',883.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 (15835,10,10,'2019-08-21 15:11:22',884.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 (15836,10,10,'2019-08-21 15:11:22',885.206000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15837,10,10,'2019-08-21 15:11:22',886.089000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15838,10,10,'2019-08-21 15:11:22',886.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 (15839,10,10,'2019-08-21 15:11:22',886.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 (15840,10,10,'2019-08-21 15:11:22',887.670000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15841,10,10,'2019-08-21 15:11:22',888.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 (15842,10,10,'2019-08-21 15:11:22',889.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 (15843,10,10,'2019-08-21 15:11:22',890.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 (15844,10,10,'2019-08-21 15:11:22',890.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 (15845,10,10,'2019-08-21 15:11:22',891.050000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15846,10,10,'2019-08-21 15:11:22',891.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 (15847,10,10,'2019-08-21 15:11:22',891.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 (15848,10,10,'2019-08-21 15:11:22',892.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 (15849,10,10,'2019-08-21 15:11:22',893.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 (15850,10,10,'2019-08-21 15:11:22',893.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 (15851,10,10,'2019-08-21 15:11:22',894.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 (15852,10,10,'2019-08-21 15:11:22',895.165000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15853,10,10,'2019-08-21 15:11:22',895.744000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15854,10,10,'2019-08-21 15:11:22',896.644000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15855,10,10,'2019-08-21 15:11:22',897.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 (15856,10,10,'2019-08-21 15:11:22',898.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 (15857,10,10,'2019-08-21 15:11:22',898.829000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15858,10,10,'2019-08-21 15:11:22',899.440000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15859,10,10,'2019-08-21 15:11:22',900.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 (15860,10,10,'2019-08-21 15:11:22',901.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 (15861,10,10,'2019-08-21 15:11:22',901.635000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15862,10,10,'2019-08-21 15:11:22',902.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 (15863,10,10,'2019-08-21 15:11:22',902.937000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15864,10,10,'2019-08-21 15:11:22',903.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 (15865,10,10,'2019-08-21 15:11:22',904.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 (15866,10,10,'2019-08-21 15:11:22',904.602000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15867,10,10,'2019-08-21 15:11:22',905.501000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15868,10,10,'2019-08-21 15:11:22',906.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 (15869,10,10,'2019-08-21 15:11:22',906.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 (15870,10,10,'2019-08-21 15:11:22',907.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 (15871,10,10,'2019-08-21 15:11:22',908.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 (15872,10,10,'2019-08-21 15:11:22',908.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 (15873,10,10,'2019-08-21 15:11:22',909.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 (15874,10,10,'2019-08-21 15:11:22',910.895000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15875,10,10,'2019-08-21 15:11:22',911.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 (15876,10,10,'2019-08-21 15:11:22',911.693000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15877,10,10,'2019-08-21 15:11:22',912.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 (15878,10,10,'2019-08-21 15:11:22',912.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 (15879,10,10,'2019-08-21 15:11:22',913.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 (15880,10,10,'2019-08-21 15:11:22',913.717000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15881,10,10,'2019-08-21 15:11:22',914.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 (15882,10,10,'2019-08-21 15:11:22',915.090000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15883,10,10,'2019-08-21 15:11:22',915.473000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15884,10,10,'2019-08-21 15:11:22',916.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 (15885,10,10,'2019-08-21 15:11:22',916.955000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15886,10,10,'2019-08-21 15:11:22',917.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 (15887,10,10,'2019-08-21 15:11:22',918.786000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15888,10,10,'2019-08-21 15:11:22',919.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 (15889,10,10,'2019-08-21 15:11:22',920.146000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15890,10,10,'2019-08-21 15:11:22',920.601000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15891,10,10,'2019-08-21 15:11:22',921.600000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15892,10,10,'2019-08-21 15:11:22',921.973000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15893,10,10,'2019-08-21 15:11:22',922.415000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15894,10,10,'2019-08-21 15:11:22',923.381000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15895,10,10,'2019-08-21 15:11:22',924.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 (15896,10,10,'2019-08-21 15:11:22',925.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 (15897,10,10,'2019-08-21 15:11:22',925.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 (15898,10,10,'2019-08-21 15:11:22',926.111000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15899,10,10,'2019-08-21 15:11:22',926.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 (15900,10,10,'2019-08-21 15:11:22',927.393000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15901,10,10,'2019-08-21 15:11:22',927.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 (15902,10,10,'2019-08-21 15:11:22',928.759000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15903,10,10,'2019-08-21 15:11:22',929.607000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15904,10,10,'2019-08-21 15:11:22',930.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 (15905,10,10,'2019-08-21 15:11:22',931.173000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15906,10,10,'2019-08-21 15:11:22',931.531000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15907,10,10,'2019-08-21 15:11:22',931.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 (15908,10,10,'2019-08-21 15:11:22',932.837000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15909,10,10,'2019-08-21 15:11:22',933.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 (15910,10,10,'2019-08-21 15:11:22',934.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 (15911,10,10,'2019-08-21 15:11:22',934.619000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15912,10,10,'2019-08-21 15:11:22',935.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 (15913,10,10,'2019-08-21 15:11:22',935.800000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15914,10,10,'2019-08-21 15:11:22',936.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 (15915,10,10,'2019-08-21 15:11:22',937.366000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15916,10,10,'2019-08-21 15:11:22',938.132000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15917,10,10,'2019-08-21 15:11:22',938.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 (15918,10,10,'2019-08-21 15:11:22',939.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 (15919,10,10,'2019-08-21 15:11:22',939.996000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15920,10,10,'2019-08-21 15:11:22',940.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 (15921,10,10,'2019-08-21 15:11:22',941.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 (15922,10,10,'2019-08-21 15:11:22',941.928000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15923,10,10,'2019-08-21 15:11:22',942.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 (15924,10,10,'2019-08-21 15:11:22',943.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 (15925,10,10,'2019-08-21 15:11:22',943.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 (15926,10,10,'2019-08-21 15:11:22',944.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 (15927,10,10,'2019-08-21 15:11:22',945.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 (15928,10,10,'2019-08-21 15:11:22',946.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 (15929,10,10,'2019-08-21 15:11:22',946.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 (15930,10,10,'2019-08-21 15:11:22',947.321000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15931,10,10,'2019-08-21 15:11:22',948.171000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15932,10,10,'2019-08-21 15:11:22',949.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 (15933,10,10,'2019-08-21 15:11:22',949.886000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15934,10,10,'2019-08-21 15:11:22',950.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 (15935,10,10,'2019-08-21 15:11:22',950.718000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15936,10,10,'2019-08-21 15:11:22',951.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 (15937,10,10,'2019-08-21 15:11:22',951.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 (15938,10,10,'2019-08-21 15:11:22',952.482000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15939,10,10,'2019-08-21 15:11:22',952.848000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15940,10,10,'2019-08-21 15:11:22',953.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 (15941,10,10,'2019-08-21 15:11:22',954.264000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15942,10,10,'2019-08-21 15:11:22',955.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 (15943,10,10,'2019-08-21 15:11:22',956.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 (15944,10,10,'2019-08-21 15:11:22',957.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 (15945,10,10,'2019-08-21 15:11:22',958.076000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15946,10,10,'2019-08-21 15:11:22',958.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 (15947,10,10,'2019-08-21 15:11:22',959.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 (15948,10,10,'2019-08-21 15:11:22',960.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 (15949,10,10,'2019-08-21 15:11:22',960.674000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15950,10,10,'2019-08-21 15:11:22',960.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 (15951,10,10,'2019-08-21 15:11:22',961.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 (15952,10,10,'2019-08-21 15:11:22',962.372000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15953,10,10,'2019-08-21 15:11:22',963.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 (15954,10,10,'2019-08-21 15:11:22',964.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 (15955,10,10,'2019-08-21 15:11:22',964.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 (15956,10,10,'2019-08-21 15:11:22',965.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 (15957,10,10,'2019-08-21 15:11:22',965.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 (15958,10,10,'2019-08-21 15:11:22',965.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 (15959,10,10,'2019-08-21 15:11:22',966.601000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15960,10,10,'2019-08-21 15:11:22',966.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 (15961,10,10,'2019-08-21 15:11:22',967.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 (15962,10,10,'2019-08-21 15:11:22',968.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 (15963,10,10,'2019-08-21 15:11:22',969.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 (15964,10,10,'2019-08-21 15:11:22',969.612000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15965,10,10,'2019-08-21 15:11:22',970.180000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15966,10,10,'2019-08-21 15:11:22',971.162000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15967,10,10,'2019-08-21 15:11:22',971.994000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15968,10,10,'2019-08-21 15:11:22',972.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 (15969,10,10,'2019-08-21 15:11:22',972.777000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15970,10,10,'2019-08-21 15:11:22',973.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 (15971,10,10,'2019-08-21 15:11:22',973.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 (15972,10,10,'2019-08-21 15:11:22',974.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 (15973,10,10,'2019-08-21 15:11:22',975.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 (15974,10,10,'2019-08-21 15:11:22',976.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 (15975,10,10,'2019-08-21 15:11:22',977.155000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15976,10,10,'2019-08-21 15:11:22',977.495000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15977,10,10,'2019-08-21 15:11:22',978.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 (15978,10,10,'2019-08-21 15:11:22',978.887000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15979,10,10,'2019-08-21 15:11:22',979.836000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15980,10,10,'2019-08-21 15:11:22',980.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 (15981,10,10,'2019-08-21 15:11:22',981.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 (15982,10,10,'2019-08-21 15:11:22',981.945000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15983,10,10,'2019-08-21 15:11:22',982.434000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15984,10,10,'2019-08-21 15:11:22',983.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 (15985,10,10,'2019-08-21 15:11:22',983.651000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15986,10,10,'2019-08-21 15:11:22',984.098000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15987,10,10,'2019-08-21 15:11:22',984.947000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15988,10,10,'2019-08-21 15:11:22',985.930000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15989,10,10,'2019-08-21 15:11:22',986.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 (15990,10,10,'2019-08-21 15:11:22',986.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 (15991,10,10,'2019-08-21 15:11:22',987.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 (15992,10,10,'2019-08-21 15:11:22',988.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 (15993,10,10,'2019-08-21 15:11:22',988.748000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15994,10,10,'2019-08-21 15:11:22',989.275000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15995,10,10,'2019-08-21 15:11:22',989.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 (15996,10,10,'2019-08-21 15:11:22',990.042000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15997,10,10,'2019-08-21 15:11:22',990.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 (15998,10,10,'2019-08-21 15:11:22',991.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 (15999,10,10,'2019-08-21 15:11:22',992.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 (16000,10,10,'2019-08-21 15:11:22',993.505000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16001,10,10,'2019-08-21 15:11:22',994.437000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16002,10,10,'2019-08-21 15:11:22',995.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 (16003,10,10,'2019-08-21 15:11:22',996.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 (16004,10,10,'2019-08-21 15:11:22',996.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 (16005,10,10,'2019-08-21 15:11:22',997.233000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16006,10,10,'2019-08-21 15:11:22',997.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 (16007,10,10,'2019-08-21 15:11:22',998.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 (16008,10,10,'2019-08-21 15:11:22',998.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 (16009,10,10,'2019-08-21 15:11:22',998.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 (16010,10,10,'2019-08-21 15:11:22',999.781000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16011,10,10,'2019-08-21 15:11:22',1000.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 (16012,10,10,'2019-08-21 15:11:22',1000.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 (16013,10,10,'2019-08-21 15:11:22',1001.712000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16014,10,10,'2019-08-21 15:11:22',1002.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 (16015,10,10,'2019-08-21 15:11:22',1003.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 (16016,10,10,'2019-08-21 15:11:22',1004.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 (16017,10,10,'2019-08-21 15:11:22',1005.225000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16018,10,10,'2019-08-21 15:11:22',1005.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 (16019,10,10,'2019-08-21 15:11:22',1006.174000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16020,10,10,'2019-08-21 15:11:22',1006.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 (16021,10,10,'2019-08-21 15:11:22',1007.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 (16022,10,10,'2019-08-21 15:11:22',1008.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 (16023,10,10,'2019-08-21 15:11:22',1008.871000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16024,10,10,'2019-08-21 15:11:22',1009.670000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16025,10,10,'2019-08-21 15:11:22',1010.553000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16026,10,10,'2019-08-21 15:11:22',1010.953000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16027,10,10,'2019-08-21 15:11:22',1011.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 (16028,10,10,'2019-08-21 15:11:22',1012.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 (16029,10,10,'2019-08-21 15:11:22',1013.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 (16030,10,10,'2019-08-21 15:11:22',1013.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 (16031,10,10,'2019-08-21 15:11:22',1014.049000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16032,10,10,'2019-08-21 15:11:22',1014.831000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16033,10,10,'2019-08-21 15:11:22',1015.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 (16034,10,10,'2019-08-21 15:11:22',1015.813000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16035,10,10,'2019-08-21 15:11:22',1016.679000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16036,10,10,'2019-08-21 15:11:22',1017.009000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16037,10,10,'2019-08-21 15:11:22',1017.661000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16038,10,10,'2019-08-21 15:11:22',1018.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 (16039,10,10,'2019-08-21 15:11:22',1019.426000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16040,10,10,'2019-08-21 15:11:22',1020.358000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16041,10,10,'2019-08-21 15:11:22',1021.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 (16042,10,10,'2019-08-21 15:11:22',1021.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 (16043,10,10,'2019-08-21 15:11:22',1022.123000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16044,10,10,'2019-08-21 15:11:22',1022.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 (16045,10,10,'2019-08-21 15:11:22',1023.357000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16046,10,10,'2019-08-21 15:11:22',1023.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 (16047,10,10,'2019-08-21 15:11:22',1024.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 (16048,10,10,'2019-08-21 15:11:22',1025.652000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16049,10,10,'2019-08-21 15:11:22',1025.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 (16050,10,10,'2019-08-21 15:11:22',1026.452000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16051,10,10,'2019-08-21 15:11:22',1027.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 (16052,10,10,'2019-08-21 15:11:22',1027.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 (16053,10,10,'2019-08-21 15:11:22',1028.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 (16054,10,10,'2019-08-21 15:11:22',1029.183000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16055,10,10,'2019-08-21 15:11:22',1029.948000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16056,10,10,'2019-08-21 15:11:22',1030.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 (16057,10,10,'2019-08-21 15:11:22',1031.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 (16058,10,10,'2019-08-21 15:11:22',1031.597000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16059,10,10,'2019-08-21 15:11:22',1032.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 (16060,10,10,'2019-08-21 15:11:22',1033.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 (16061,10,10,'2019-08-21 15:11:22',1033.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 (16062,10,10,'2019-08-21 15:11:22',1034.243000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16063,10,10,'2019-08-21 15:11:22',1035.192000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16064,10,10,'2019-08-21 15:11:22',1035.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 (16065,10,10,'2019-08-21 15:11:22',1036.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 (16066,10,10,'2019-08-21 15:11:22',1037.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 (16067,10,10,'2019-08-21 15:11:22',1038.139000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16068,10,10,'2019-08-21 15:11:22',1038.537000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16069,10,10,'2019-08-21 15:11:22',1039.005000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16070,10,10,'2019-08-21 15:11:22',1039.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 (16071,10,10,'2019-08-21 15:11:22',1040.604000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16072,10,10,'2019-08-21 15:11:22',1040.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 (16073,10,10,'2019-08-21 15:11:22',1041.568000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16074,10,10,'2019-08-21 15:11:22',1042.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 (16075,10,10,'2019-08-21 15:11:22',1043.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 (16076,10,10,'2019-08-21 15:11:22',1044.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 (16077,10,10,'2019-08-21 15:11:22',1044.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 (16078,10,10,'2019-08-21 15:11:22',1045.397000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16079,10,10,'2019-08-21 15:11:22',1046.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 (16080,10,10,'2019-08-21 15:11:22',1047.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 (16081,10,10,'2019-08-21 15:11:22',1048.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 (16082,10,10,'2019-08-21 15:11:22',1048.994000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16083,10,10,'2019-08-21 15:11:22',1049.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 (16084,10,10,'2019-08-21 15:11:22',1050.235000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16085,10,10,'2019-08-21 15:11:22',1050.692000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16086,10,10,'2019-08-21 15:11:22',1051.194000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16087,10,10,'2019-08-21 15:11:22',1051.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 (16088,10,10,'2019-08-21 15:11:22',1052.340000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16089,10,10,'2019-08-21 15:11:22',1053.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 (16090,10,10,'2019-08-21 15:11:22',1053.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 (16091,10,10,'2019-08-21 15:11:22',1054.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 (16092,10,10,'2019-08-21 15:11:22',1054.871000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16093,10,10,'2019-08-21 15:11:22',1055.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 (16094,10,10,'2019-08-21 15:11:22',1056.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 (16095,10,10,'2019-08-21 15:11:22',1056.469000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16096,10,10,'2019-08-21 15:11:22',1057.418000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16097,10,10,'2019-08-21 15:11:22',1058.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 (16098,10,10,'2019-08-21 15:11:22',1059.183000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16099,10,10,'2019-08-21 15:11:22',1060.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 (16100,10,10,'2019-08-21 15:11:22',1060.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 (16101,10,10,'2019-08-21 15:11:22',1060.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 (16102,10,10,'2019-08-21 15:11:22',1061.469000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16103,10,10,'2019-08-21 15:11:22',1061.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 (16104,10,10,'2019-08-21 15:11:22',1062.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 (16105,10,10,'2019-08-21 15:11:22',1062.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 (16106,10,10,'2019-08-21 15:11:22',1063.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 (16107,10,10,'2019-08-21 15:11:22',1064.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 (16108,10,10,'2019-08-21 15:11:22',1065.326000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16109,10,10,'2019-08-21 15:11:22',1065.930000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16110,10,10,'2019-08-21 15:11:22',1066.125000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16111,10,10,'2019-08-21 15:11:22',1067.074000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16112,10,10,'2019-08-21 15:11:22',1067.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 (16113,10,10,'2019-08-21 15:11:22',1068.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 (16114,10,10,'2019-08-21 15:11:22',1068.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 (16115,10,10,'2019-08-21 15:11:22',1069.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 (16116,10,10,'2019-08-21 15:11:22',1070.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 (16117,10,10,'2019-08-21 15:11:22',1070.754000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16118,10,10,'2019-08-21 15:11:22',1071.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 (16119,10,10,'2019-08-21 15:11:22',1072.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 (16120,10,10,'2019-08-21 15:11:22',1073.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 (16121,10,10,'2019-08-21 15:11:22',1073.917000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16122,10,10,'2019-08-21 15:11:22',1074.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 (16123,10,10,'2019-08-21 15:11:22',1074.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 (16124,10,10,'2019-08-21 15:11:22',1075.648000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16125,10,10,'2019-08-21 15:11:22',1076.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 (16126,10,10,'2019-08-21 15:11:22',1076.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 (16127,10,10,'2019-08-21 15:11:22',1077.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 (16128,10,10,'2019-08-21 15:11:22',1078.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 (16129,10,10,'2019-08-21 15:11:22',1078.961000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16130,10,10,'2019-08-21 15:11:22',1079.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 (16131,10,10,'2019-08-21 15:11:22',1079.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 (16132,10,10,'2019-08-21 15:11:22',1080.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 (16133,10,10,'2019-08-21 15:11:22',1080.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 (16134,10,10,'2019-08-21 15:11:22',1081.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 (16135,10,10,'2019-08-21 15:11:22',1082.507000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16136,10,10,'2019-08-21 15:11:22',1083.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 (16137,10,10,'2019-08-21 15:11:22',1084.405000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16138,10,10,'2019-08-21 15:11:22',1085.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 (16139,10,10,'2019-08-21 15:11:22',1085.874000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16140,10,10,'2019-08-21 15:11:22',1086.170000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16141,10,10,'2019-08-21 15:11:22',1086.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 (16142,10,10,'2019-08-21 15:11:22',1086.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 (16143,10,10,'2019-08-21 15:11:22',1087.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 (16144,10,10,'2019-08-21 15:11:22',1088.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 (16145,10,10,'2019-08-21 15:11:22',1088.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 (16146,10,10,'2019-08-21 15:11:22',1089.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 (16147,10,10,'2019-08-21 15:11:22',1090.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 (16148,10,10,'2019-08-21 15:11:22',1091.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 (16149,10,10,'2019-08-21 15:11:22',1091.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 (16150,10,10,'2019-08-21 15:11:22',1092.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 (16151,10,10,'2019-08-21 15:11:22',1093.329000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16152,10,10,'2019-08-21 15:11:22',1093.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 (16153,10,10,'2019-08-21 15:11:22',1094.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 (16154,10,10,'2019-08-21 15:11:22',1094.654000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16155,10,10,'2019-08-21 15:11:22',1095.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 (16156,10,10,'2019-08-21 15:11:22',1096.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 (16157,10,10,'2019-08-21 15:11:22',1096.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 (16158,10,10,'2019-08-21 15:11:22',1097.774000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16159,10,10,'2019-08-21 15:11:22',1098.573000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16160,10,10,'2019-08-21 15:11:22',1099.035000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16161,10,10,'2019-08-21 15:11:22',1099.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 (16162,10,10,'2019-08-21 15:11:22',1100.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 (16163,10,10,'2019-08-21 15:11:22',1100.711000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16164,10,10,'2019-08-21 15:11:22',1101.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 (16165,10,10,'2019-08-21 15:11:22',1102.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 (16166,10,10,'2019-08-21 15:11:22',1103.102000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16167,10,10,'2019-08-21 15:11:22',1103.900000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16168,10,10,'2019-08-21 15:11:22',1104.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 (16169,10,10,'2019-08-21 15:11:22',1105.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 (16170,10,10,'2019-08-21 15:11:22',1105.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 (16171,10,10,'2019-08-21 15:11:22',1106.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 (16172,10,10,'2019-08-21 15:11:22',1106.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 (16173,10,10,'2019-08-21 15:11:22',1107.230000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16174,10,10,'2019-08-21 15:11:22',1108.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 (16175,10,10,'2019-08-21 15:11:22',1109.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 (16176,10,10,'2019-08-21 15:11:22',1109.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 (16177,10,10,'2019-08-21 15:11:22',1109.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 (16178,10,10,'2019-08-21 15:11:22',1110.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 (16179,10,10,'2019-08-21 15:11:22',1110.793000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16180,10,10,'2019-08-21 15:11:22',1111.626000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16181,10,10,'2019-08-21 15:11:22',1112.491000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16182,10,10,'2019-08-21 15:11:22',1113.407000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16183,10,10,'2019-08-21 15:11:22',1114.339000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16184,10,10,'2019-08-21 15:11:22',1115.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 (16185,10,10,'2019-08-21 15:11:22',1116.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 (16186,10,10,'2019-08-21 15:11:22',1116.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 (16187,10,10,'2019-08-21 15:11:22',1117.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 (16188,10,10,'2019-08-21 15:11:22',1117.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 (16189,10,10,'2019-08-21 15:11:22',1117.886000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16190,10,10,'2019-08-21 15:11:22',1118.817000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16191,11,11,'2023-02-09 10:39:10',1.365000,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16192,11,11,'2023-02-09 10:39:10',1.535719,0.000000,NULL,'2',NULL,NULL,'SESS',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16193,11,11,'2023-02-09 10:39:10',1.586724,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16194,11,11,'2023-02-09 10:39:10',1.587720,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16195,11,11,'2023-02-09 10:39:10',1.589722,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16196,11,11,'2023-02-09 10:39:10',1.590718,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16197,11,11,'2023-02-09 10:39:10',2.686000,0.000000,NULL,'5',NULL,NULL,'boundary',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16198,11,11,'2023-02-09 10:39:10',2.689001,0.000000,NULL,'nan',NULL,NULL,'VEnd',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16199,11,11,'2023-02-09 10:39:10',4.023997,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16200,11,11,'2023-02-09 10:39:10',7.154718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16201,11,11,'2023-02-09 10:39:10',7.386723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16202,11,11,'2023-02-09 10:39:10',7.885724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16203,11,11,'2023-02-09 10:39:10',8.560726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16204,11,11,'2023-02-09 10:39:10',10.784723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16205,11,11,'2023-02-09 10:39:10',10.799720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16206,11,11,'2023-02-09 10:39:10',11.039720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16207,11,11,'2023-02-09 10:39:10',11.060994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16208,11,11,'2023-02-09 10:39:10',11.538722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16209,11,11,'2023-02-09 10:39:10',12.078721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16210,11,11,'2023-02-09 10:39:10',12.568720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16211,11,11,'2023-02-09 10:39:10',12.581726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16212,11,11,'2023-02-09 10:39:10',12.811718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16213,11,11,'2023-02-09 10:39:10',12.833002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16214,11,11,'2023-02-09 10:39:10',13.310720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16215,11,11,'2023-02-09 10:39:10',13.997721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16216,11,11,'2023-02-09 10:39:10',14.280721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16217,11,11,'2023-02-09 10:39:10',14.302718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16218,11,11,'2023-02-09 10:39:10',14.531725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16219,11,11,'2023-02-09 10:39:10',14.552003,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16220,11,11,'2023-02-09 10:39:10',15.030727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16221,11,11,'2023-02-09 10:39:10',15.623723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16222,11,11,'2023-02-09 10:39:10',15.632725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16223,11,11,'2023-02-09 10:39:10',15.645720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16224,11,11,'2023-02-09 10:39:10',15.890720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16225,11,11,'2023-02-09 10:39:10',15.911993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16226,11,11,'2023-02-09 10:39:10',16.389722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16227,11,11,'2023-02-09 10:39:10',17.050722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16228,11,11,'2023-02-09 10:39:10',17.168726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16229,11,11,'2023-02-09 10:39:10',17.183722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16230,11,11,'2023-02-09 10:39:10',17.423723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16231,11,11,'2023-02-09 10:39:10',17.444996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16232,11,11,'2023-02-09 10:39:10',17.922725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16233,11,11,'2023-02-09 10:39:10',18.569724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16234,11,11,'2023-02-09 10:39:10',18.672721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16235,11,11,'2023-02-09 10:39:10',18.685726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16236,11,11,'2023-02-09 10:39:10',18.929720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16237,11,11,'2023-02-09 10:39:10',18.951003,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16238,11,11,'2023-02-09 10:39:10',19.428721,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16239,11,11,'2023-02-09 10:39:10',20.115722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16240,11,11,'2023-02-09 10:39:10',20.192718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16241,11,11,'2023-02-09 10:39:10',20.207725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16242,11,11,'2023-02-09 10:39:10',20.435727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16243,11,11,'2023-02-09 10:39:10',20.457000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16244,11,11,'2023-02-09 10:39:10',20.934718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16245,11,11,'2023-02-09 10:39:10',21.528720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16246,11,11,'2023-02-09 10:39:10',21.791724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16247,11,11,'2023-02-09 10:39:10',21.805725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16248,11,11,'2023-02-09 10:39:10',22.034722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16249,11,11,'2023-02-09 10:39:10',22.055995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16250,11,11,'2023-02-09 10:39:10',22.533724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16251,11,11,'2023-02-09 10:39:10',23.128721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16252,11,11,'2023-02-09 10:39:10',23.440719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16253,11,11,'2023-02-09 10:39:10',23.455726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16254,11,11,'2023-02-09 10:39:10',23.687721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16255,11,11,'2023-02-09 10:39:10',23.708994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16256,11,11,'2023-02-09 10:39:10',24.186722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16257,11,11,'2023-02-09 10:39:10',24.887724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16258,11,11,'2023-02-09 10:39:10',25.159720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16259,11,11,'2023-02-09 10:39:10',25.173721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16260,11,11,'2023-02-09 10:39:10',25.420723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16261,11,11,'2023-02-09 10:39:10',25.441000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16262,11,11,'2023-02-09 10:39:10',25.919724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16263,11,11,'2023-02-09 10:39:10',26.553718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16264,11,11,'2023-02-09 10:39:10',26.783721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16265,11,11,'2023-02-09 10:39:10',26.799723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16266,11,11,'2023-02-09 10:39:10',27.032724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16267,11,11,'2023-02-09 10:39:10',27.053997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16268,11,11,'2023-02-09 10:39:10',27.531725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16269,11,11,'2023-02-09 10:39:10',28.192725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16270,11,11,'2023-02-09 10:39:10',28.247724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16271,11,11,'2023-02-09 10:39:10',28.261725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16272,11,11,'2023-02-09 10:39:10',28.485723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16273,11,11,'2023-02-09 10:39:10',28.506996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16274,11,11,'2023-02-09 10:39:10',28.984725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16275,11,11,'2023-02-09 10:39:10',29.565721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16276,11,11,'2023-02-09 10:39:10',29.576725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16277,11,11,'2023-02-09 10:39:10',29.590726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16278,11,11,'2023-02-09 10:39:10',29.831723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16279,11,11,'2023-02-09 10:39:10',29.852000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16280,11,11,'2023-02-09 10:39:10',30.330724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16281,11,11,'2023-02-09 10:39:10',31.017725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16282,11,11,'2023-02-09 10:39:10',31.471726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16283,11,11,'2023-02-09 10:39:10',31.487719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16284,11,11,'2023-02-09 10:39:10',31.724722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16285,11,11,'2023-02-09 10:39:10',31.745995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16286,11,11,'2023-02-09 10:39:10',32.223723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16287,11,11,'2023-02-09 10:39:10',32.737722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16288,11,11,'2023-02-09 10:39:10',33.550723,0.000000,NULL,'nan',NULL,NULL,'dist',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16289,11,11,'2023-02-09 10:39:10',33.633000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16290,11,11,'2023-02-09 10:39:10',34.631003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16291,11,11,'2023-02-09 10:39:10',36.921726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16292,11,11,'2023-02-09 10:39:10',36.937719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16293,11,11,'2023-02-09 10:39:10',37.175718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16294,11,11,'2023-02-09 10:39:10',37.197002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16295,11,11,'2023-02-09 10:39:10',37.674720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16296,11,11,'2023-02-09 10:39:10',38.321719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16297,11,11,'2023-02-09 10:39:10',38.619726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16298,11,11,'2023-02-09 10:39:10',38.636724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16299,11,11,'2023-02-09 10:39:10',38.867723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16300,11,11,'2023-02-09 10:39:10',38.888996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16301,11,11,'2023-02-09 10:39:10',39.366724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16302,11,11,'2023-02-09 10:39:10',39.987723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16303,11,11,'2023-02-09 10:39:10',40.114719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16304,11,11,'2023-02-09 10:39:10',40.130721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16305,11,11,'2023-02-09 10:39:10',40.374725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16306,11,11,'2023-02-09 10:39:10',40.395998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16307,11,11,'2023-02-09 10:39:10',40.873727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16308,11,11,'2023-02-09 10:39:10',41.413726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16309,11,11,'2023-02-09 10:39:10',41.458727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16310,11,11,'2023-02-09 10:39:10',41.473723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16311,11,11,'2023-02-09 10:39:10',41.693718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16312,11,11,'2023-02-09 10:39:10',41.715002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16313,11,11,'2023-02-09 10:39:10',42.192720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16314,11,11,'2023-02-09 10:39:10',42.693723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16315,11,11,'2023-02-09 10:39:10',42.735726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16316,11,11,'2023-02-09 10:39:10',42.756718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16317,11,11,'2023-02-09 10:39:10',42.986721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16318,11,11,'2023-02-09 10:39:10',43.007994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16319,11,11,'2023-02-09 10:39:10',43.485722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16320,11,11,'2023-02-09 10:39:10',44.079724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16321,11,11,'2023-02-09 10:39:10',44.538724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16322,11,11,'2023-02-09 10:39:10',44.553721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16323,11,11,'2023-02-09 10:39:10',44.785725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16324,11,11,'2023-02-09 10:39:10',44.806999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16325,11,11,'2023-02-09 10:39:10',45.284727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16326,11,11,'2023-02-09 10:39:10',45.932722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16327,11,11,'2023-02-09 10:39:10',46.186723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16328,11,11,'2023-02-09 10:39:10',46.203722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16329,11,11,'2023-02-09 10:39:10',46.438724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16330,11,11,'2023-02-09 10:39:10',46.459997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16331,11,11,'2023-02-09 10:39:10',46.937725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16332,11,11,'2023-02-09 10:39:10',47.464719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16333,11,11,'2023-02-09 10:39:10',47.802718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16334,11,11,'2023-02-09 10:39:10',47.817724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16335,11,11,'2023-02-09 10:39:10',48.051720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16336,11,11,'2023-02-09 10:39:10',48.072994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16337,11,11,'2023-02-09 10:39:10',48.550722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16338,11,11,'2023-02-09 10:39:10',49.223722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16339,11,11,'2023-02-09 10:39:10',49.266721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16340,11,11,'2023-02-09 10:39:10',49.281718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16341,11,11,'2023-02-09 10:39:10',49.517725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16342,11,11,'2023-02-09 10:39:10',49.538003,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16343,11,11,'2023-02-09 10:39:10',50.016727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16344,11,11,'2023-02-09 10:39:10',50.583722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16345,11,11,'2023-02-09 10:39:10',51.073722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16346,11,11,'2023-02-09 10:39:10',51.089724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16347,11,11,'2023-02-09 10:39:10',51.330721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16348,11,11,'2023-02-09 10:39:10',51.350998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16349,11,11,'2023-02-09 10:39:10',51.829722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16350,11,11,'2023-02-09 10:39:10',52.449725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16351,11,11,'2023-02-09 10:39:10',52.657720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16352,11,11,'2023-02-09 10:39:10',52.674719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16353,11,11,'2023-02-09 10:39:10',52.915725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16354,11,11,'2023-02-09 10:39:10',52.936999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16355,11,11,'2023-02-09 10:39:10',53.414727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16356,11,11,'2023-02-09 10:39:10',54.008719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16357,11,11,'2023-02-09 10:39:10',54.306726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16358,11,11,'2023-02-09 10:39:10',54.321723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16359,11,11,'2023-02-09 10:39:10',54.555719,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16360,11,11,'2023-02-09 10:39:10',54.577002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16361,11,11,'2023-02-09 10:39:10',55.054720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16362,11,11,'2023-02-09 10:39:10',55.728726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16363,11,11,'2023-02-09 10:39:10',55.745724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16364,11,11,'2023-02-09 10:39:10',55.761727,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16365,11,11,'2023-02-09 10:39:10',55.994727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16366,11,11,'2023-02-09 10:39:10',56.016000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16367,11,11,'2023-02-09 10:39:10',56.493718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16368,11,11,'2023-02-09 10:39:10',57.154719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16369,11,11,'2023-02-09 10:39:10',57.170721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16370,11,11,'2023-02-09 10:39:10',57.187720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16371,11,11,'2023-02-09 10:39:10',57.420720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16372,11,11,'2023-02-09 10:39:10',57.442999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16373,11,11,'2023-02-09 10:39:10',57.919722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16374,11,11,'2023-02-09 10:39:10',58.580722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16375,11,11,'2023-02-09 10:39:10',58.828719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16376,11,11,'2023-02-09 10:39:10',58.845717,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16377,11,11,'2023-02-09 10:39:10',59.086724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16378,11,11,'2023-02-09 10:39:10',59.107997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16379,11,11,'2023-02-09 10:39:10',59.585725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16380,11,11,'2023-02-09 10:39:10',60.179717,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16381,11,11,'2023-02-09 10:39:10',60.337723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16382,11,11,'2023-02-09 10:39:10',60.352720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16383,11,11,'2023-02-09 10:39:10',60.592721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16384,11,11,'2023-02-09 10:39:10',60.615000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16385,11,11,'2023-02-09 10:39:10',61.091722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16386,11,11,'2023-02-09 10:39:10',61.645722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16387,11,11,'2023-02-09 10:39:10',62.025724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16388,11,11,'2023-02-09 10:39:10',62.043719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16389,11,11,'2023-02-09 10:39:10',62.272726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16390,11,11,'2023-02-09 10:39:10',62.293999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16391,11,11,'2023-02-09 10:39:10',62.771727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16392,11,11,'2023-02-09 10:39:10',63.311726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16393,11,11,'2023-02-09 10:39:10',64.049723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16394,11,11,'2023-02-09 10:39:10',64.064719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16395,11,11,'2023-02-09 10:39:10',64.298725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16396,11,11,'2023-02-09 10:39:10',64.318993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16397,11,11,'2023-02-09 10:39:10',64.797727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16398,11,11,'2023-02-09 10:39:10',65.484718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16399,11,11,'2023-02-09 10:39:10',66.153724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16400,11,11,'2023-02-09 10:39:10',66.169717,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16401,11,11,'2023-02-09 10:39:10',66.417724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16402,11,11,'2023-02-09 10:39:10',66.438997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16403,11,11,'2023-02-09 10:39:10',66.916726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16404,11,11,'2023-02-09 10:39:10',67.616722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16405,11,11,'2023-02-09 10:39:10',68.313721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16406,11,11,'2023-02-09 10:39:10',68.330719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16407,11,11,'2023-02-09 10:39:10',68.563719,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16408,11,11,'2023-02-09 10:39:10',68.585003,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16409,11,11,'2023-02-09 10:39:10',69.062721,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16410,11,11,'2023-02-09 10:39:10',69.616721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16411,11,11,'2023-02-09 10:39:10',70.289721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16412,11,11,'2023-02-09 10:39:10',70.304718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16413,11,11,'2023-02-09 10:39:10',70.535726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16414,11,11,'2023-02-09 10:39:10',70.557000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16415,11,11,'2023-02-09 10:39:10',71.034718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16416,11,11,'2023-02-09 10:39:10',71.615725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16417,11,11,'2023-02-09 10:39:10',71.913721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16418,11,11,'2023-02-09 10:39:10',71.928718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16419,11,11,'2023-02-09 10:39:10',72.161718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16420,11,11,'2023-02-09 10:39:10',72.183002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16421,11,11,'2023-02-09 10:39:10',72.660720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16422,11,11,'2023-02-09 10:39:10',73.174718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16423,11,11,'2023-02-09 10:39:10',73.433719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16424,11,11,'2023-02-09 10:39:10',73.448726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16425,11,11,'2023-02-09 10:39:10',73.694722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16426,11,11,'2023-02-09 10:39:10',73.714999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16427,11,11,'2023-02-09 10:39:10',74.193723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16428,11,11,'2023-02-09 10:39:10',74.827727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16429,11,11,'2023-02-09 10:39:10',75.041727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16430,11,11,'2023-02-09 10:39:10',75.057720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16431,11,11,'2023-02-09 10:39:10',75.293727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16432,11,11,'2023-02-09 10:39:10',75.315000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16433,11,11,'2023-02-09 10:39:10',75.792719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16434,11,11,'2023-02-09 10:39:10',76.440724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16435,11,11,'2023-02-09 10:39:10',76.713725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16436,11,11,'2023-02-09 10:39:10',76.729718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16437,11,11,'2023-02-09 10:39:10',76.973722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16438,11,11,'2023-02-09 10:39:10',76.994000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16439,11,11,'2023-02-09 10:39:10',77.472724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16440,11,11,'2023-02-09 10:39:10',78.172720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16441,11,11,'2023-02-09 10:39:10',78.401727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16442,11,11,'2023-02-09 10:39:10',78.417719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16443,11,11,'2023-02-09 10:39:10',78.652721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16444,11,11,'2023-02-09 10:39:10',78.672999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16445,11,11,'2023-02-09 10:39:10',79.151723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16446,11,11,'2023-02-09 10:39:10',79.812723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16447,11,11,'2023-02-09 10:39:10',80.049726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16448,11,11,'2023-02-09 10:39:10',80.065719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16449,11,11,'2023-02-09 10:39:10',80.305720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16450,11,11,'2023-02-09 10:39:10',80.326993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16451,11,11,'2023-02-09 10:39:10',80.804721,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16452,11,11,'2023-02-09 10:39:10',81.451720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16453,11,11,'2023-02-09 10:39:10',81.609726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16454,11,11,'2023-02-09 10:39:10',81.624723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16455,11,11,'2023-02-09 10:39:10',81.864723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16456,11,11,'2023-02-09 10:39:10',81.885997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16457,11,11,'2023-02-09 10:39:10',82.363725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16458,11,11,'2023-02-09 10:39:10',83.051722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16459,11,11,'2023-02-09 10:39:10',83.273718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16460,11,11,'2023-02-09 10:39:10',83.288725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16461,11,11,'2023-02-09 10:39:10',83.517722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16462,11,11,'2023-02-09 10:39:10',83.538995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16463,11,11,'2023-02-09 10:39:10',84.016723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16464,11,11,'2023-02-09 10:39:10',84.650727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16465,11,11,'2023-02-09 10:39:10',84.873719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16466,11,11,'2023-02-09 10:39:10',84.890718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16467,11,11,'2023-02-09 10:39:10',85.130719,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16468,11,11,'2023-02-09 10:39:10',85.150996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16469,11,11,'2023-02-09 10:39:10',85.629720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16470,11,11,'2023-02-09 10:39:10',86.263724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16471,11,11,'2023-02-09 10:39:10',86.393727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16472,11,11,'2023-02-09 10:39:10',86.409720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16473,11,11,'2023-02-09 10:39:10',86.635720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16474,11,11,'2023-02-09 10:39:10',86.657999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16475,11,11,'2023-02-09 10:39:10',87.134721,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16476,11,11,'2023-02-09 10:39:10',87.808727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16477,11,11,'2023-02-09 10:39:10',87.985722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16478,11,11,'2023-02-09 10:39:10',88.002721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16479,11,11,'2023-02-09 10:39:10',88.248726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16480,11,11,'2023-02-09 10:39:10',88.270000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16481,11,11,'2023-02-09 10:39:10',88.747718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16482,11,11,'2023-02-09 10:39:10',89.435724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16483,11,11,'2023-02-09 10:39:10',89.593720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16484,11,11,'2023-02-09 10:39:10',89.608727,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16485,11,11,'2023-02-09 10:39:10',89.848718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16486,11,11,'2023-02-09 10:39:10',89.870001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16487,11,11,'2023-02-09 10:39:10',90.347719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16488,11,11,'2023-02-09 10:39:10',91.034720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16489,11,11,'2023-02-09 10:39:10',91.049727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16490,11,11,'2023-02-09 10:39:10',91.065720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16491,11,11,'2023-02-09 10:39:10',91.300721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16492,11,11,'2023-02-09 10:39:10',91.323000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16493,11,11,'2023-02-09 10:39:10',91.799723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16494,11,11,'2023-02-09 10:39:10',92.367724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16495,11,11,'2023-02-09 10:39:10',92.729722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16496,11,11,'2023-02-09 10:39:10',92.745725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16497,11,11,'2023-02-09 10:39:10',92.993722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16498,11,11,'2023-02-09 10:39:10',93.014995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16499,11,11,'2023-02-09 10:39:10',93.492723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16500,11,11,'2023-02-09 10:39:10',94.019727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16501,11,11,'2023-02-09 10:39:10',94.315722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16502,11,11,'2023-02-09 10:39:10',94.333726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16503,11,11,'2023-02-09 10:39:10',94.566727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16504,11,11,'2023-02-09 10:39:10',94.588000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16505,11,11,'2023-02-09 10:39:10',95.065718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16506,11,11,'2023-02-09 10:39:10',95.712727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16507,11,11,'2023-02-09 10:39:10',96.009718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16508,11,11,'2023-02-09 10:39:10',96.025721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16509,11,11,'2023-02-09 10:39:10',96.259727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16510,11,11,'2023-02-09 10:39:10',96.279994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16511,11,11,'2023-02-09 10:39:10',96.758718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16512,11,11,'2023-02-09 10:39:10',97.312719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16513,11,11,'2023-02-09 10:39:10',97.481718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16514,11,11,'2023-02-09 10:39:10',97.497721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16515,11,11,'2023-02-09 10:39:10',97.738727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16516,11,11,'2023-02-09 10:39:10',97.760000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16517,11,11,'2023-02-09 10:39:10',98.237719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16518,11,11,'2023-02-09 10:39:10',98.898719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16519,11,11,'2023-02-09 10:39:10',99.225724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16520,11,11,'2023-02-09 10:39:10',99.241726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16521,11,11,'2023-02-09 10:39:10',99.471719,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16522,11,11,'2023-02-09 10:39:10',99.491997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16523,11,11,'2023-02-09 10:39:10',99.970721,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16524,11,11,'2023-02-09 10:39:10',100.617720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16525,11,11,'2023-02-09 10:39:10',100.681721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16526,11,11,'2023-02-09 10:39:10',100.697723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16527,11,11,'2023-02-09 10:39:10',100.937724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16528,11,11,'2023-02-09 10:39:10',100.958997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16529,11,11,'2023-02-09 10:39:10',101.436726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16530,11,11,'2023-02-09 10:39:10',102.016726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16531,11,11,'2023-02-09 10:39:10',103.553723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16532,11,11,'2023-02-09 10:39:10',103.568720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16533,11,11,'2023-02-09 10:39:10',103.816727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16534,11,11,'2023-02-09 10:39:10',103.838000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16535,11,11,'2023-02-09 10:39:10',104.315718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16536,11,11,'2023-02-09 10:39:10',104.882724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16537,11,11,'2023-02-09 10:39:10',106.401726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16538,11,11,'2023-02-09 10:39:10',106.416723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16539,11,11,'2023-02-09 10:39:10',106.641726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16540,11,11,'2023-02-09 10:39:10',106.663000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16541,11,11,'2023-02-09 10:39:10',107.140718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16542,11,11,'2023-02-09 10:39:10',107.694718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16543,11,11,'2023-02-09 10:39:10',107.921724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16544,11,11,'2023-02-09 10:39:10',107.937726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16545,11,11,'2023-02-09 10:39:10',108.160718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16546,11,11,'2023-02-09 10:39:10',108.182002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16547,11,11,'2023-02-09 10:39:10',108.659720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16548,11,11,'2023-02-09 10:39:10',109.280718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16549,11,11,'2023-02-09 10:39:10',109.689718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16550,11,11,'2023-02-09 10:39:10',109.704725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16551,11,11,'2023-02-09 10:39:10',109.947723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16552,11,11,'2023-02-09 10:39:10',109.968001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16553,11,11,'2023-02-09 10:39:10',110.446725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16554,11,11,'2023-02-09 10:39:10',110.973719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16555,11,11,'2023-02-09 10:39:10',111.257724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16556,11,11,'2023-02-09 10:39:10',111.272721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16557,11,11,'2023-02-09 10:39:10',111.506727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16558,11,11,'2023-02-09 10:39:10',111.526995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16559,11,11,'2023-02-09 10:39:10',112.005719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16560,11,11,'2023-02-09 10:39:10',112.519717,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16561,11,11,'2023-02-09 10:39:10',112.753723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16562,11,11,'2023-02-09 10:39:10',112.768720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16563,11,11,'2023-02-09 10:39:10',113.012724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16564,11,11,'2023-02-09 10:39:10',113.033001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16565,11,11,'2023-02-09 10:39:10',113.511725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16566,11,11,'2023-02-09 10:39:10',114.118723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16567,11,11,'2023-02-09 10:39:10',114.376718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16568,11,11,'2023-02-09 10:39:10',114.392720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16569,11,11,'2023-02-09 10:39:10',114.625721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16570,11,11,'2023-02-09 10:39:10',114.645998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16571,11,11,'2023-02-09 10:39:10',115.124722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16572,11,11,'2023-02-09 10:39:10',115.824718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16573,11,11,'2023-02-09 10:39:10',116.153725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16574,11,11,'2023-02-09 10:39:10',116.169717,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16575,11,11,'2023-02-09 10:39:10',116.397719,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16576,11,11,'2023-02-09 10:39:10',116.419998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16577,11,11,'2023-02-09 10:39:10',116.896720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16578,11,11,'2023-02-09 10:39:10',117.597722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16579,11,11,'2023-02-09 10:39:10',117.769719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16580,11,11,'2023-02-09 10:39:10',117.785722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16581,11,11,'2023-02-09 10:39:10',118.010725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16582,11,11,'2023-02-09 10:39:10',118.031999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16583,11,11,'2023-02-09 10:39:10',118.509727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16584,11,11,'2023-02-09 10:39:10',119.076722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16585,11,11,'2023-02-09 10:39:10',119.704721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16586,11,11,'2023-02-09 10:39:10',119.720724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16587,11,11,'2023-02-09 10:39:10',119.943726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16588,11,11,'2023-02-09 10:39:10',119.963994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16589,11,11,'2023-02-09 10:39:10',120.442718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16590,11,11,'2023-02-09 10:39:10',121.022719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16591,11,11,'2023-02-09 10:39:10',121.600718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16592,11,11,'2023-02-09 10:39:10',121.616721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16593,11,11,'2023-02-09 10:39:10',121.849721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16594,11,11,'2023-02-09 10:39:10',121.869998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16595,11,11,'2023-02-09 10:39:10',122.348722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16596,11,11,'2023-02-09 10:39:10',122.915718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16597,11,11,'2023-02-09 10:39:10',123.185722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16598,11,11,'2023-02-09 10:39:10',123.201725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16599,11,11,'2023-02-09 10:39:10',123.434725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16600,11,11,'2023-02-09 10:39:10',123.455999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16601,11,11,'2023-02-09 10:39:10',123.933727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16602,11,11,'2023-02-09 10:39:10',124.541720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16603,11,11,'2023-02-09 10:39:10',124.768725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16604,11,11,'2023-02-09 10:39:10',124.785724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16605,11,11,'2023-02-09 10:39:10',125.008726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16606,11,11,'2023-02-09 10:39:10',125.028993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16607,11,11,'2023-02-09 10:39:10',125.507717,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16608,11,11,'2023-02-09 10:39:10',126.193723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16609,11,11,'2023-02-09 10:39:10',126.401718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16610,11,11,'2023-02-09 10:39:10',126.417721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16611,11,11,'2023-02-09 10:39:10',126.634718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16612,11,11,'2023-02-09 10:39:10',126.654000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16613,11,11,'2023-02-09 10:39:10',127.133720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16614,11,11,'2023-02-09 10:39:10',127.793724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16615,11,11,'2023-02-09 10:39:10',128.328724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16616,11,11,'2023-02-09 10:39:10',128.344727,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16617,11,11,'2023-02-09 10:39:10',128.433723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16618,11,11,'2023-02-09 10:39:10',128.454996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16619,11,11,'2023-02-09 10:39:10',128.932724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16620,11,11,'2023-02-09 10:39:10',129.632720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16621,11,11,'2023-02-09 10:39:10',130.544725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16622,11,11,'2023-02-09 10:39:10',130.560718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16623,11,11,'2023-02-09 10:39:10',130.632725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16624,11,11,'2023-02-09 10:39:10',130.653998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16625,11,11,'2023-02-09 10:39:10',131.131726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16626,11,11,'2023-02-09 10:39:10',131.818727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16627,11,11,'2023-02-09 10:39:10',132.072719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16628,11,11,'2023-02-09 10:39:10',132.088722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16629,11,11,'2023-02-09 10:39:10',132.165718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16630,11,11,'2023-02-09 10:39:10',132.187001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16631,11,11,'2023-02-09 10:39:10',132.664720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16632,11,11,'2023-02-09 10:39:10',133.337719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16633,11,11,'2023-02-09 10:39:10',133.616726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16634,11,11,'2023-02-09 10:39:10',133.632719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16635,11,11,'2023-02-09 10:39:10',133.711726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16636,11,11,'2023-02-09 10:39:10',133.733000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16637,11,11,'2023-02-09 10:39:10',134.210718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16638,11,11,'2023-02-09 10:39:10',134.830721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16639,11,11,'2023-02-09 10:39:10',135.072723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16640,11,11,'2023-02-09 10:39:10',135.088726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16641,11,11,'2023-02-09 10:39:10',135.163720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16642,11,11,'2023-02-09 10:39:10',135.184993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16643,11,11,'2023-02-09 10:39:10',135.662722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16644,11,11,'2023-02-09 10:39:10',136.336727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16645,11,11,'2023-02-09 10:39:10',136.608723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16646,11,11,'2023-02-09 10:39:10',136.624726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16647,11,11,'2023-02-09 10:39:10',136.696723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16648,11,11,'2023-02-09 10:39:10',136.717001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16649,11,11,'2023-02-09 10:39:10',137.195725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16650,11,11,'2023-02-09 10:39:10',137.789727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16651,11,11,'2023-02-09 10:39:10',138.112719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16652,11,11,'2023-02-09 10:39:10',138.128721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16653,11,11,'2023-02-09 10:39:10',138.202720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16654,11,11,'2023-02-09 10:39:10',138.223993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16655,11,11,'2023-02-09 10:39:10',138.701722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16656,11,11,'2023-02-09 10:39:10',139.388722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16657,11,11,'2023-02-09 10:39:10',139.720726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16658,11,11,'2023-02-09 10:39:10',139.736719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16659,11,11,'2023-02-09 10:39:10',139.815727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16660,11,11,'2023-02-09 10:39:10',139.835994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16661,11,11,'2023-02-09 10:39:10',140.314718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16662,11,11,'2023-02-09 10:39:10',140.841722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16663,11,11,'2023-02-09 10:39:10',141.128725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16664,11,11,'2023-02-09 10:39:10',141.144718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16665,11,11,'2023-02-09 10:39:10',141.214723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16666,11,11,'2023-02-09 10:39:10',141.235997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16667,11,11,'2023-02-09 10:39:10',141.713725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16668,11,11,'2023-02-09 10:39:10',142.414727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16669,11,11,'2023-02-09 10:39:10',142.736723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16670,11,11,'2023-02-09 10:39:10',142.752726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16671,11,11,'2023-02-09 10:39:10',142.827720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16672,11,11,'2023-02-09 10:39:10',142.848993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16673,11,11,'2023-02-09 10:39:10',143.326722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16674,11,11,'2023-02-09 10:39:10',144.013723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16675,11,11,'2023-02-09 10:39:10',144.264727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16676,11,11,'2023-02-09 10:39:10',144.280720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16677,11,11,'2023-02-09 10:39:10',144.360723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16678,11,11,'2023-02-09 10:39:10',144.381001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16679,11,11,'2023-02-09 10:39:10',144.859725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16680,11,11,'2023-02-09 10:39:10',145.506724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16681,11,11,'2023-02-09 10:39:10',145.768722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16682,11,11,'2023-02-09 10:39:10',145.784725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16683,11,11,'2023-02-09 10:39:10',145.853725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16684,11,11,'2023-02-09 10:39:10',145.874002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16685,11,11,'2023-02-09 10:39:10',146.352726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16686,11,11,'2023-02-09 10:39:10',146.985724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16687,11,11,'2023-02-09 10:39:10',147.235723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16688,11,11,'2023-02-09 10:39:10',147.254723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16689,11,11,'2023-02-09 10:39:10',147.332725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16690,11,11,'2023-02-09 10:39:10',147.353998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16691,11,11,'2023-02-09 10:39:10',147.831726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16692,11,11,'2023-02-09 10:39:10',148.345725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16693,11,11,'2023-02-09 10:39:10',148.720718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16694,11,11,'2023-02-09 10:39:10',148.736720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16695,11,11,'2023-02-09 10:39:10',148.811725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16696,11,11,'2023-02-09 10:39:10',148.832998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16697,11,11,'2023-02-09 10:39:10',149.310727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16698,11,11,'2023-02-09 10:39:10',149.824725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16699,11,11,'2023-02-09 10:39:10',150.064726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16700,11,11,'2023-02-09 10:39:10',150.080718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16701,11,11,'2023-02-09 10:39:10',150.157725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16702,11,11,'2023-02-09 10:39:10',150.178998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16703,11,11,'2023-02-09 10:39:10',150.656726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16704,11,11,'2023-02-09 10:39:10',151.330722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16705,11,11,'2023-02-09 10:39:10',151.584723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16706,11,11,'2023-02-09 10:39:10',151.600726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16707,11,11,'2023-02-09 10:39:10',151.677722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16708,11,11,'2023-02-09 10:39:10',151.698000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16709,11,11,'2023-02-09 10:39:10',152.176724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16710,11,11,'2023-02-09 10:39:10',152.823723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16711,11,11,'2023-02-09 10:39:10',153.104721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16712,11,11,'2023-02-09 10:39:10',153.120724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16713,11,11,'2023-02-09 10:39:10',153.196724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16714,11,11,'2023-02-09 10:39:10',153.217998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16715,11,11,'2023-02-09 10:39:10',153.695726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16716,11,11,'2023-02-09 10:39:10',154.356726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16717,11,11,'2023-02-09 10:39:10',154.624719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16718,11,11,'2023-02-09 10:39:10',154.640722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16719,11,11,'2023-02-09 10:39:10',154.715726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16720,11,11,'2023-02-09 10:39:10',154.737000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16721,11,11,'2023-02-09 10:39:10',155.214718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16722,11,11,'2023-02-09 10:39:10',155.849717,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16723,11,11,'2023-02-09 10:39:10',156.080726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16724,11,11,'2023-02-09 10:39:10',156.096719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16725,11,11,'2023-02-09 10:39:10',156.169722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16726,11,11,'2023-02-09 10:39:10',156.189999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16727,11,11,'2023-02-09 10:39:10',156.668723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16728,11,11,'2023-02-09 10:39:10',157.341723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16729,11,11,'2023-02-09 10:39:10',157.600724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16730,11,11,'2023-02-09 10:39:10',157.616727,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16731,11,11,'2023-02-09 10:39:10',157.688724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16732,11,11,'2023-02-09 10:39:10',157.709997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16733,11,11,'2023-02-09 10:39:10',158.187725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16734,11,11,'2023-02-09 10:39:10',158.834724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16735,11,11,'2023-02-09 10:39:10',159.496720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16736,11,11,'2023-02-09 10:39:10',159.512723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16737,11,11,'2023-02-09 10:39:10',159.594718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16738,11,11,'2023-02-09 10:39:10',159.614996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16739,11,11,'2023-02-09 10:39:10',160.093720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16740,11,11,'2023-02-09 10:39:10',160.793726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16741,11,11,'2023-02-09 10:39:10',161.024725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16742,11,11,'2023-02-09 10:39:10',161.040717,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16743,11,11,'2023-02-09 10:39:10',161.113720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16744,11,11,'2023-02-09 10:39:10',161.134994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16745,11,11,'2023-02-09 10:39:10',161.612722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16746,11,11,'2023-02-09 10:39:10',162.206724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16747,11,11,'2023-02-09 10:39:10',162.488718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16748,11,11,'2023-02-09 10:39:10',162.504721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16749,11,11,'2023-02-09 10:39:10',162.579725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16750,11,11,'2023-02-09 10:39:10',162.600998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16751,11,11,'2023-02-09 10:39:10',163.078727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16752,11,11,'2023-02-09 10:39:10',163.765718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16753,11,11,'2023-02-09 10:39:10',164.008726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16754,11,11,'2023-02-09 10:39:10',164.024718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16755,11,11,'2023-02-09 10:39:10',164.098717,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16756,11,11,'2023-02-09 10:39:10',164.120001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16757,11,11,'2023-02-09 10:39:10',164.597719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16758,11,11,'2023-02-09 10:39:10',165.165720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16759,11,11,'2023-02-09 10:39:10',165.424721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16760,11,11,'2023-02-09 10:39:10',165.440724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16761,11,11,'2023-02-09 10:39:10',165.512721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16762,11,11,'2023-02-09 10:39:10',165.532998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16763,11,11,'2023-02-09 10:39:10',166.011722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16764,11,11,'2023-02-09 10:39:10',166.671727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16765,11,11,'2023-02-09 10:39:10',166.984720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16766,11,11,'2023-02-09 10:39:10',167.000723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16767,11,11,'2023-02-09 10:39:10',167.071725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16768,11,11,'2023-02-09 10:39:10',167.092998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16769,11,11,'2023-02-09 10:39:10',167.570726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16770,11,11,'2023-02-09 10:39:10',168.111721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16771,11,11,'2023-02-09 10:39:10',168.416718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16772,11,11,'2023-02-09 10:39:10',168.432721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16773,11,11,'2023-02-09 10:39:10',168.510723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16774,11,11,'2023-02-09 10:39:10',168.531996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16775,11,11,'2023-02-09 10:39:10',169.009725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16776,11,11,'2023-02-09 10:39:10',169.657719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16777,11,11,'2023-02-09 10:39:10',169.952719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16778,11,11,'2023-02-09 10:39:10',169.968722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16779,11,11,'2023-02-09 10:39:10',170.043726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16780,11,11,'2023-02-09 10:39:10',170.064999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16781,11,11,'2023-02-09 10:39:10',170.542718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16782,11,11,'2023-02-09 10:39:10',171.069721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16783,11,11,'2023-02-09 10:39:10',171.344725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16784,11,11,'2023-02-09 10:39:10',171.360718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16785,11,11,'2023-02-09 10:39:10',171.429717,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16786,11,11,'2023-02-09 10:39:10',171.449995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16787,11,11,'2023-02-09 10:39:10',171.928719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16788,11,11,'2023-02-09 10:39:10',172.588723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16789,11,11,'2023-02-09 10:39:10',172.840724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16790,11,11,'2023-02-09 10:39:10',172.856726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16791,11,11,'2023-02-09 10:39:10',172.935724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16792,11,11,'2023-02-09 10:39:10',172.956997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16793,11,11,'2023-02-09 10:39:10',173.434726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16794,11,11,'2023-02-09 10:39:10',174.055724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16795,11,11,'2023-02-09 10:39:10',174.296721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16796,11,11,'2023-02-09 10:39:10',174.312723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16797,11,11,'2023-02-09 10:39:10',174.388724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16798,11,11,'2023-02-09 10:39:10',174.409001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16799,11,11,'2023-02-09 10:39:10',174.887725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16800,11,11,'2023-02-09 10:39:10',175.414719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16801,11,11,'2023-02-09 10:39:10',175.712726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16802,11,11,'2023-02-09 10:39:10',175.755997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16803,12,12,'2023-02-09 10:46:31',1.205003,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16804,12,12,'2023-02-09 10:46:31',1.386625,0.000000,NULL,'2',NULL,NULL,'SESS',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16805,12,12,'2023-02-09 10:46:31',1.435619,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16806,12,12,'2023-02-09 10:46:31',1.437620,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16807,12,12,'2023-02-09 10:46:31',1.438616,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16808,12,12,'2023-02-09 10:46:31',1.439622,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16809,12,12,'2023-02-09 10:46:31',2.537000,0.000000,NULL,'5',NULL,NULL,'boundary',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16810,12,12,'2023-02-09 10:46:31',3.668626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16811,12,12,'2023-02-09 10:46:31',5.476997,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16812,12,12,'2023-02-09 10:46:31',9.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16813,12,12,'2023-02-09 10:46:31',9.104997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16814,12,12,'2023-02-09 10:46:31',9.677626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16815,12,12,'2023-02-09 10:46:31',9.696626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16816,12,12,'2023-02-09 10:46:31',10.105626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16817,12,12,'2023-02-09 10:46:31',10.124998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16818,12,12,'2023-02-09 10:46:31',10.698622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16819,12,12,'2023-02-09 10:46:31',10.710621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16820,12,12,'2023-02-09 10:46:31',11.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16821,12,12,'2023-02-09 10:46:31',11.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16822,12,12,'2023-02-09 10:46:31',11.716621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16823,12,12,'2023-02-09 10:46:31',11.727624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16824,12,12,'2023-02-09 10:46:31',12.145617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16825,12,12,'2023-02-09 10:46:31',12.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16826,12,12,'2023-02-09 10:46:31',12.737617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16827,12,12,'2023-02-09 10:46:31',12.748621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16828,12,12,'2023-02-09 10:46:31',13.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16829,12,12,'2023-02-09 10:46:31',13.185995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16830,12,12,'2023-02-09 10:46:31',13.755626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16831,12,12,'2023-02-09 10:46:31',13.766620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16832,12,12,'2023-02-09 10:46:31',14.185618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16833,12,12,'2023-02-09 10:46:31',14.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16834,12,12,'2023-02-09 10:46:31',14.776622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16835,12,12,'2023-02-09 10:46:31',14.787626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16836,12,12,'2023-02-09 10:46:31',15.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16837,12,12,'2023-02-09 10:46:31',15.225000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16838,12,12,'2023-02-09 10:46:31',15.794621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16839,12,12,'2023-02-09 10:46:31',15.805625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16840,12,12,'2023-02-09 10:46:31',16.225619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16841,12,12,'2023-02-09 10:46:31',16.245001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16842,12,12,'2023-02-09 10:46:31',16.815617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16843,12,12,'2023-02-09 10:46:31',16.827617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16844,12,12,'2023-02-09 10:46:31',17.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16845,12,12,'2023-02-09 10:46:31',17.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16846,12,12,'2023-02-09 10:46:31',17.838625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16847,12,12,'2023-02-09 10:46:31',17.848623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16848,12,12,'2023-02-09 10:46:31',18.265620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16849,12,12,'2023-02-09 10:46:31',18.285002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16850,12,12,'2023-02-09 10:46:31',18.854623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16851,12,12,'2023-02-09 10:46:31',18.865616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16852,12,12,'2023-02-09 10:46:31',19.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16853,12,12,'2023-02-09 10:46:31',19.341001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16854,12,12,'2023-02-09 10:46:31',19.877620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16855,12,12,'2023-02-09 10:46:31',19.888624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16856,12,12,'2023-02-09 10:46:31',20.305621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16857,12,12,'2023-02-09 10:46:31',20.324993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16858,12,12,'2023-02-09 10:46:31',20.898617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16859,12,12,'2023-02-09 10:46:31',20.909621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16860,12,12,'2023-02-09 10:46:31',21.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16861,12,12,'2023-02-09 10:46:31',21.344993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16862,12,12,'2023-02-09 10:46:31',21.916626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16863,12,12,'2023-02-09 10:46:31',21.927619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16864,12,12,'2023-02-09 10:46:31',22.345622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16865,12,12,'2023-02-09 10:46:31',22.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16866,12,12,'2023-02-09 10:46:31',22.934625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16867,12,12,'2023-02-09 10:46:31',22.945618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16868,12,12,'2023-02-09 10:46:31',23.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16869,12,12,'2023-02-09 10:46:31',23.384994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16870,12,12,'2023-02-09 10:46:31',23.955621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16871,12,12,'2023-02-09 10:46:31',23.966625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16872,12,12,'2023-02-09 10:46:31',24.385623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16873,12,12,'2023-02-09 10:46:31',24.440993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16874,12,12,'2023-02-09 10:46:31',24.977623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16875,12,12,'2023-02-09 10:46:31',24.988617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16876,12,12,'2023-02-09 10:46:31',25.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16877,12,12,'2023-02-09 10:46:31',25.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16878,12,12,'2023-02-09 10:46:31',25.994626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16879,12,12,'2023-02-09 10:46:31',26.005620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16880,12,12,'2023-02-09 10:46:31',26.425624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16881,12,12,'2023-02-09 10:46:31',26.444996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16882,12,12,'2023-02-09 10:46:31',27.017624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16883,12,12,'2023-02-09 10:46:31',27.028618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16884,12,12,'2023-02-09 10:46:31',27.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16885,12,12,'2023-02-09 10:46:31',27.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16886,12,12,'2023-02-09 10:46:31',28.038620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16887,12,12,'2023-02-09 10:46:31',28.049624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16888,12,12,'2023-02-09 10:46:31',28.465625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16889,12,12,'2023-02-09 10:46:31',28.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16890,12,12,'2023-02-09 10:46:31',29.056619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16891,12,12,'2023-02-09 10:46:31',29.068619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16892,12,12,'2023-02-09 10:46:31',29.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16893,12,12,'2023-02-09 10:46:31',29.504997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16894,12,12,'2023-02-09 10:46:31',30.077625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16895,12,12,'2023-02-09 10:46:31',30.089625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16896,12,12,'2023-02-09 10:46:31',30.505626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16897,12,12,'2023-02-09 10:46:31',30.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16898,12,12,'2023-02-09 10:46:31',31.095624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16899,12,12,'2023-02-09 10:46:31',31.105622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16900,12,12,'2023-02-09 10:46:31',31.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16901,12,12,'2023-02-09 10:46:31',31.544998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16902,12,12,'2023-02-09 10:46:31',32.116621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16903,12,12,'2023-02-09 10:46:31',32.127624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16904,12,12,'2023-02-09 10:46:31',32.545617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16905,12,12,'2023-02-09 10:46:31',32.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16906,12,12,'2023-02-09 10:46:31',33.138623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16907,12,12,'2023-02-09 10:46:31',33.149627,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16908,12,12,'2023-02-09 10:46:31',33.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16909,12,12,'2023-02-09 10:46:31',33.620998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16910,12,12,'2023-02-09 10:46:31',34.155626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16911,12,12,'2023-02-09 10:46:31',34.166620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16912,12,12,'2023-02-09 10:46:31',34.585618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16913,12,12,'2023-02-09 10:46:31',34.605000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16914,12,12,'2023-02-09 10:46:31',35.177618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16915,12,12,'2023-02-09 10:46:31',35.188622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16916,12,12,'2023-02-09 10:46:31',35.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16917,12,12,'2023-02-09 10:46:31',35.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16918,12,12,'2023-02-09 10:46:31',36.194621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16919,12,12,'2023-02-09 10:46:31',36.205625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16920,12,12,'2023-02-09 10:46:31',36.625619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16921,12,12,'2023-02-09 10:46:31',36.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16922,12,12,'2023-02-09 10:46:31',37.217619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16923,12,12,'2023-02-09 10:46:31',37.228623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16924,12,12,'2023-02-09 10:46:31',37.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16925,12,12,'2023-02-09 10:46:31',37.665001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16926,12,12,'2023-02-09 10:46:31',38.238625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16927,12,12,'2023-02-09 10:46:31',38.249619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16928,12,12,'2023-02-09 10:46:31',38.665620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16929,12,12,'2023-02-09 10:46:31',38.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16930,12,12,'2023-02-09 10:46:31',39.256624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16931,12,12,'2023-02-09 10:46:31',39.267618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16932,12,12,'2023-02-09 10:46:31',39.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16933,12,12,'2023-02-09 10:46:31',39.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16934,12,12,'2023-02-09 10:46:31',40.278616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16935,12,12,'2023-02-09 10:46:31',40.289620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16936,12,12,'2023-02-09 10:46:31',40.705621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16937,12,12,'2023-02-09 10:46:31',40.738994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16938,12,12,'2023-02-09 10:46:31',41.295619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16939,12,12,'2023-02-09 10:46:31',41.306623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16940,12,12,'2023-02-09 10:46:31',41.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16941,12,12,'2023-02-09 10:46:31',41.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16942,12,12,'2023-02-09 10:46:31',42.317621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16943,12,12,'2023-02-09 10:46:31',42.328625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16944,12,12,'2023-02-09 10:46:31',42.745622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16945,12,12,'2023-02-09 10:46:31',42.764994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16946,12,12,'2023-02-09 10:46:31',43.334625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16947,12,12,'2023-02-09 10:46:31',43.345618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16948,12,12,'2023-02-09 10:46:31',43.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16949,12,12,'2023-02-09 10:46:31',43.784994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16950,12,12,'2023-02-09 10:46:31',44.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16951,12,12,'2023-02-09 10:46:31',44.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16952,12,12,'2023-02-09 10:46:31',44.785623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16953,12,12,'2023-02-09 10:46:31',44.840993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16954,12,12,'2023-02-09 10:46:31',45.378619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16955,12,12,'2023-02-09 10:46:31',45.389623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16956,12,12,'2023-02-09 10:46:31',45.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16957,12,12,'2023-02-09 10:46:31',45.824995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16958,12,12,'2023-02-09 10:46:31',46.396618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16959,12,12,'2023-02-09 10:46:31',46.406626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16960,12,12,'2023-02-09 10:46:31',46.825624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16961,12,12,'2023-02-09 10:46:31',46.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16962,12,12,'2023-02-09 10:46:31',47.417624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16963,12,12,'2023-02-09 10:46:31',47.428618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16964,12,12,'2023-02-09 10:46:31',47.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16965,12,12,'2023-02-09 10:46:31',47.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16966,12,12,'2023-02-09 10:46:31',48.435623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16967,12,12,'2023-02-09 10:46:31',48.446617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16968,12,12,'2023-02-09 10:46:31',48.865625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16969,12,12,'2023-02-09 10:46:31',48.884997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16970,12,12,'2023-02-09 10:46:31',49.456619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16971,12,12,'2023-02-09 10:46:31',49.467623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16972,12,12,'2023-02-09 10:46:31',49.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16973,12,12,'2023-02-09 10:46:31',49.940996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16974,12,12,'2023-02-09 10:46:31',50.478621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16975,12,12,'2023-02-09 10:46:31',50.489625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16976,12,12,'2023-02-09 10:46:31',50.905626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16977,12,12,'2023-02-09 10:46:31',50.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16978,12,12,'2023-02-09 10:46:31',51.495624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16979,12,12,'2023-02-09 10:46:31',51.506618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16980,12,12,'2023-02-09 10:46:31',51.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16981,12,12,'2023-02-09 10:46:31',51.958999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16982,12,12,'2023-02-09 10:46:31',52.517616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16983,12,12,'2023-02-09 10:46:31',52.529626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16984,12,12,'2023-02-09 10:46:31',52.945617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16985,12,12,'2023-02-09 10:46:31',52.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16986,12,12,'2023-02-09 10:46:31',53.534620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16987,12,12,'2023-02-09 10:46:31',53.545623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16988,12,12,'2023-02-09 10:46:31',53.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16989,12,12,'2023-02-09 10:46:31',53.984999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16990,12,12,'2023-02-09 10:46:31',54.556622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16991,12,12,'2023-02-09 10:46:31',54.567625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16992,12,12,'2023-02-09 10:46:31',54.985618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16993,12,12,'2023-02-09 10:46:31',55.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16994,12,12,'2023-02-09 10:46:31',55.577618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16995,12,12,'2023-02-09 10:46:31',55.588622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16996,12,12,'2023-02-09 10:46:31',56.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16997,12,12,'2023-02-09 10:46:31',56.060999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16998,12,12,'2023-02-09 10:46:31',56.595617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16999,12,12,'2023-02-09 10:46:31',56.606621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17000,12,12,'2023-02-09 10:46:31',57.025619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17001,12,12,'2023-02-09 10:46:31',57.045001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17002,12,12,'2023-02-09 10:46:31',57.618625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17003,12,12,'2023-02-09 10:46:31',57.628623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17004,12,12,'2023-02-09 10:46:31',58.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17005,12,12,'2023-02-09 10:46:31',58.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17006,12,12,'2023-02-09 10:46:31',58.635618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17007,12,12,'2023-02-09 10:46:31',58.645626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17008,12,12,'2023-02-09 10:46:31',59.065620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17009,12,12,'2023-02-09 10:46:31',59.085002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17010,12,12,'2023-02-09 10:46:31',59.657620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17011,12,12,'2023-02-09 10:46:31',59.668624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17012,12,12,'2023-02-09 10:46:31',60.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17013,12,12,'2023-02-09 10:46:31',60.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17014,12,12,'2023-02-09 10:46:31',60.678626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17015,12,12,'2023-02-09 10:46:31',60.689620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17016,12,12,'2023-02-09 10:46:31',61.105621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17017,12,12,'2023-02-09 10:46:31',61.161001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17018,12,12,'2023-02-09 10:46:31',61.696625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17019,12,12,'2023-02-09 10:46:31',61.707619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17020,12,12,'2023-02-09 10:46:31',62.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17021,12,12,'2023-02-09 10:46:31',62.144993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17022,12,12,'2023-02-09 10:46:31',62.717621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17023,12,12,'2023-02-09 10:46:31',62.728625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17024,12,12,'2023-02-09 10:46:31',63.145622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17025,12,12,'2023-02-09 10:46:31',63.164994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17026,12,12,'2023-02-09 10:46:31',63.736626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17027,12,12,'2023-02-09 10:46:31',63.747620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17028,12,12,'2023-02-09 10:46:31',64.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17029,12,12,'2023-02-09 10:46:31',64.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17030,12,12,'2023-02-09 10:46:31',64.757622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17031,12,12,'2023-02-09 10:46:31',64.768626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17032,12,12,'2023-02-09 10:46:31',65.185623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17033,12,12,'2023-02-09 10:46:31',65.204995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17034,12,12,'2023-02-09 10:46:31',65.775621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17035,12,12,'2023-02-09 10:46:31',65.785619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17036,12,12,'2023-02-09 10:46:31',66.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17037,12,12,'2023-02-09 10:46:31',66.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17038,12,12,'2023-02-09 10:46:31',66.796618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17039,12,12,'2023-02-09 10:46:31',66.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17040,12,12,'2023-02-09 10:46:31',67.225624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17041,12,12,'2023-02-09 10:46:31',67.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17042,12,12,'2023-02-09 10:46:31',67.818620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17043,12,12,'2023-02-09 10:46:31',67.829624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17044,12,12,'2023-02-09 10:46:31',68.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17045,12,12,'2023-02-09 10:46:31',68.278997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17046,12,12,'2023-02-09 10:46:31',68.835623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17047,12,12,'2023-02-09 10:46:31',68.846617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17048,12,12,'2023-02-09 10:46:31',69.265625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17049,12,12,'2023-02-09 10:46:31',69.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17050,12,12,'2023-02-09 10:46:31',69.857625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17051,12,12,'2023-02-09 10:46:31',69.868619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17052,12,12,'2023-02-09 10:46:31',70.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17053,12,12,'2023-02-09 10:46:31',70.304997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17054,12,12,'2023-02-09 10:46:31',70.874618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17055,12,12,'2023-02-09 10:46:31',70.885622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17056,12,12,'2023-02-09 10:46:31',71.305626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17057,12,12,'2023-02-09 10:46:31',71.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17058,12,12,'2023-02-09 10:46:31',71.896620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17059,12,12,'2023-02-09 10:46:31',71.907624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17060,12,12,'2023-02-09 10:46:31',72.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17061,12,12,'2023-02-09 10:46:31',72.380997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17062,12,12,'2023-02-09 10:46:31',72.915625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17063,12,12,'2023-02-09 10:46:31',72.925623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17064,12,12,'2023-02-09 10:46:31',73.345617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17065,12,12,'2023-02-09 10:46:31',73.364999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17066,12,12,'2023-02-09 10:46:31',73.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17067,12,12,'2023-02-09 10:46:31',73.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17068,12,12,'2023-02-09 10:46:31',74.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17069,12,12,'2023-02-09 10:46:31',74.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17070,12,12,'2023-02-09 10:46:31',74.958623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17071,12,12,'2023-02-09 10:46:31',74.969617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17072,12,12,'2023-02-09 10:46:31',75.385618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17073,12,12,'2023-02-09 10:46:31',75.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17074,12,12,'2023-02-09 10:46:31',75.975626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17075,12,12,'2023-02-09 10:46:31',75.986620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17076,12,12,'2023-02-09 10:46:31',76.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17077,12,12,'2023-02-09 10:46:31',76.425000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17078,12,12,'2023-02-09 10:46:31',76.997618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17079,12,12,'2023-02-09 10:46:31',77.008622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17080,12,12,'2023-02-09 10:46:31',77.425619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17081,12,12,'2023-02-09 10:46:31',77.445001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17082,12,12,'2023-02-09 10:46:31',78.018625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17083,12,12,'2023-02-09 10:46:31',78.029618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17084,12,12,'2023-02-09 10:46:31',78.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17085,12,12,'2023-02-09 10:46:31',78.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17086,12,12,'2023-02-09 10:46:31',79.036624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17087,12,12,'2023-02-09 10:46:31',79.047617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17088,12,12,'2023-02-09 10:46:31',79.465620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17089,12,12,'2023-02-09 10:46:31',79.521000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17090,12,12,'2023-02-09 10:46:31',80.057620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17091,12,12,'2023-02-09 10:46:31',80.068624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17092,12,12,'2023-02-09 10:46:31',80.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17093,12,12,'2023-02-09 10:46:31',80.505002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17094,12,12,'2023-02-09 10:46:31',81.075619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17095,12,12,'2023-02-09 10:46:31',81.086623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17096,12,12,'2023-02-09 10:46:31',81.505621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17097,12,12,'2023-02-09 10:46:31',81.525003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17098,12,12,'2023-02-09 10:46:31',82.096625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17099,12,12,'2023-02-09 10:46:31',82.108625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17100,12,12,'2023-02-09 10:46:31',82.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17101,12,12,'2023-02-09 10:46:31',82.544993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17102,12,12,'2023-02-09 10:46:31',83.115620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17103,12,12,'2023-02-09 10:46:31',83.126624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17104,12,12,'2023-02-09 10:46:31',83.545622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17105,12,12,'2023-02-09 10:46:31',83.564994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17106,12,12,'2023-02-09 10:46:31',84.136626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17107,12,12,'2023-02-09 10:46:31',84.147620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17108,12,12,'2023-02-09 10:46:31',84.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17109,12,12,'2023-02-09 10:46:31',84.598995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17110,12,12,'2023-02-09 10:46:31',85.158618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17111,12,12,'2023-02-09 10:46:31',85.168626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17112,12,12,'2023-02-09 10:46:31',85.585623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17113,12,12,'2023-02-09 10:46:31',85.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17114,12,12,'2023-02-09 10:46:31',86.175621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17115,12,12,'2023-02-09 10:46:31',86.186625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17116,12,12,'2023-02-09 10:46:31',86.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17117,12,12,'2023-02-09 10:46:31',86.624995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17118,12,12,'2023-02-09 10:46:31',87.197623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17119,12,12,'2023-02-09 10:46:31',87.208617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17120,12,12,'2023-02-09 10:46:31',87.625624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17121,12,12,'2023-02-09 10:46:31',87.680994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17122,12,12,'2023-02-09 10:46:31',88.214617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17123,12,12,'2023-02-09 10:46:31',88.225620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17124,12,12,'2023-02-09 10:46:31',88.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17125,12,12,'2023-02-09 10:46:31',88.664996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17126,12,12,'2023-02-09 10:46:31',89.236619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17127,12,12,'2023-02-09 10:46:31',89.247622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17128,12,12,'2023-02-09 10:46:31',89.665625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17129,12,12,'2023-02-09 10:46:31',89.684997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17130,12,12,'2023-02-09 10:46:31',90.254618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17131,12,12,'2023-02-09 10:46:31',90.265621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17132,12,12,'2023-02-09 10:46:31',90.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17133,12,12,'2023-02-09 10:46:31',90.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17134,12,12,'2023-02-09 10:46:31',91.275624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17135,12,12,'2023-02-09 10:46:31',91.286618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17136,12,12,'2023-02-09 10:46:31',91.705626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17137,12,12,'2023-02-09 10:46:31',91.724998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17138,12,12,'2023-02-09 10:46:31',92.297626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17139,12,12,'2023-02-09 10:46:31',92.309626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17140,12,12,'2023-02-09 10:46:31',92.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17141,12,12,'2023-02-09 10:46:31',92.744998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17142,12,12,'2023-02-09 10:46:31',93.315625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17143,12,12,'2023-02-09 10:46:31',93.326619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17144,12,12,'2023-02-09 10:46:31',93.745617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17145,12,12,'2023-02-09 10:46:31',93.800997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17146,12,12,'2023-02-09 10:46:31',94.337617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17147,12,12,'2023-02-09 10:46:31',94.348621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17148,12,12,'2023-02-09 10:46:31',94.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17149,12,12,'2023-02-09 10:46:31',94.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17150,12,12,'2023-02-09 10:46:31',95.358623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17151,12,12,'2023-02-09 10:46:31',95.369617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17152,12,12,'2023-02-09 10:46:31',95.785618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17153,12,12,'2023-02-09 10:46:31',95.805996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17154,12,12,'2023-02-09 10:46:31',96.376622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17155,12,12,'2023-02-09 10:46:31',96.387626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17156,12,12,'2023-02-09 10:46:31',96.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17157,12,12,'2023-02-09 10:46:31',96.825000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17158,12,12,'2023-02-09 10:46:31',97.397618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17159,12,12,'2023-02-09 10:46:31',97.408622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17160,12,12,'2023-02-09 10:46:31',97.825619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17161,12,12,'2023-02-09 10:46:31',97.845001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17162,12,12,'2023-02-09 10:46:31',98.415617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17163,12,12,'2023-02-09 10:46:31',98.426621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17164,12,12,'2023-02-09 10:46:31',98.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17165,12,12,'2023-02-09 10:46:31',98.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17166,12,12,'2023-02-09 10:46:31',99.436624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17167,12,12,'2023-02-09 10:46:31',99.447617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17168,12,12,'2023-02-09 10:46:31',99.865620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17169,12,12,'2023-02-09 10:46:31',99.921000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17170,12,12,'2023-02-09 10:46:31',100.454623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17171,12,12,'2023-02-09 10:46:31',100.465616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17172,12,12,'2023-02-09 10:46:31',100.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17173,12,12,'2023-02-09 10:46:31',100.905002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17174,12,12,'2023-02-09 10:46:31',101.475619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17175,12,12,'2023-02-09 10:46:31',101.488624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17176,12,12,'2023-02-09 10:46:31',101.905621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17177,12,12,'2023-02-09 10:46:31',101.924993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17178,12,12,'2023-02-09 10:46:31',102.498617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17179,12,12,'2023-02-09 10:46:31',102.508625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17180,12,12,'2023-02-09 10:46:31',102.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17181,12,12,'2023-02-09 10:46:31',102.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17182,12,12,'2023-02-09 10:46:31',103.515620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17183,12,12,'2023-02-09 10:46:31',103.526624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17184,12,12,'2023-02-09 10:46:31',103.945622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17185,12,12,'2023-02-09 10:46:31',103.964994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17186,12,12,'2023-02-09 10:46:31',104.537622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17187,12,12,'2023-02-09 10:46:31',104.548626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17188,12,12,'2023-02-09 10:46:31',104.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17189,12,12,'2023-02-09 10:46:31',104.984994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17190,12,12,'2023-02-09 10:46:31',105.558618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17191,12,12,'2023-02-09 10:46:31',105.569622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17192,12,12,'2023-02-09 10:46:31',105.985623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17193,12,12,'2023-02-09 10:46:31',106.004995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17194,12,12,'2023-02-09 10:46:31',106.576617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17195,12,12,'2023-02-09 10:46:31',106.587621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17196,12,12,'2023-02-09 10:46:31',107.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17197,12,12,'2023-02-09 10:46:31',107.026001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17198,12,12,'2023-02-09 10:46:31',107.594626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17199,12,12,'2023-02-09 10:46:31',107.605620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17200,12,12,'2023-02-09 10:46:31',108.025624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17201,12,12,'2023-02-09 10:46:31',108.080994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17202,12,12,'2023-02-09 10:46:31',108.615622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17203,12,12,'2023-02-09 10:46:31',108.626626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17204,12,12,'2023-02-09 10:46:31',109.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17205,12,12,'2023-02-09 10:46:31',109.064996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17206,12,12,'2023-02-09 10:46:31',109.638620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17207,12,12,'2023-02-09 10:46:31',109.648618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17208,12,12,'2023-02-09 10:46:31',110.065625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17209,12,12,'2023-02-09 10:46:31',110.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17210,12,12,'2023-02-09 10:46:31',110.655623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17211,12,12,'2023-02-09 10:46:31',110.666617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17212,12,12,'2023-02-09 10:46:31',111.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17213,12,12,'2023-02-09 10:46:31',111.104997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17214,12,12,'2023-02-09 10:46:31',111.677625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17215,12,12,'2023-02-09 10:46:31',111.685622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17216,12,12,'2023-02-09 10:46:31',112.105626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17217,12,12,'2023-02-09 10:46:31',112.138999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17218,12,12,'2023-02-09 10:46:31',112.698622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17219,12,12,'2023-02-09 10:46:31',112.711617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17220,12,12,'2023-02-09 10:46:31',113.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17221,12,12,'2023-02-09 10:46:31',113.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17222,12,12,'2023-02-09 10:46:31',113.716621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17223,12,12,'2023-02-09 10:46:31',113.727624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17224,12,12,'2023-02-09 10:46:31',114.145627,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17225,12,12,'2023-02-09 10:46:31',114.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17226,12,12,'2023-02-09 10:46:31',114.737617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17227,12,12,'2023-02-09 10:46:31',114.748621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17228,12,12,'2023-02-09 10:46:31',115.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17229,12,12,'2023-02-09 10:46:31',115.220998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17230,12,12,'2023-02-09 10:46:31',115.755626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17231,12,12,'2023-02-09 10:46:31',115.766620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17232,12,12,'2023-02-09 10:46:31',116.185618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17233,12,12,'2023-02-09 10:46:31',116.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17234,12,12,'2023-02-09 10:46:31',116.776622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17235,12,12,'2023-02-09 10:46:31',116.787626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17236,12,12,'2023-02-09 10:46:31',117.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17237,12,12,'2023-02-09 10:46:31',117.225000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17238,12,12,'2023-02-09 10:46:31',117.794621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17239,12,12,'2023-02-09 10:46:31',117.805625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17240,12,12,'2023-02-09 10:46:31',118.225619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17241,12,12,'2023-02-09 10:46:31',118.245001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17242,12,12,'2023-02-09 10:46:31',118.815617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17243,12,12,'2023-02-09 10:46:31',118.826621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17244,12,12,'2023-02-09 10:46:31',119.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17245,12,12,'2023-02-09 10:46:31',119.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17246,12,12,'2023-02-09 10:46:31',119.838625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17247,12,12,'2023-02-09 10:46:31',119.849619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17248,12,12,'2023-02-09 10:46:31',120.265620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17249,12,12,'2023-02-09 10:46:31',120.321000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17250,12,12,'2023-02-09 10:46:31',120.855618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17251,12,12,'2023-02-09 10:46:31',120.865626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17252,12,12,'2023-02-09 10:46:31',121.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17253,12,12,'2023-02-09 10:46:31',121.305002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17254,12,12,'2023-02-09 10:46:31',121.877620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17255,12,12,'2023-02-09 10:46:31',121.888624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17256,12,12,'2023-02-09 10:46:31',122.305621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17257,12,12,'2023-02-09 10:46:31',122.325003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17258,12,12,'2023-02-09 10:46:31',122.898617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17259,12,12,'2023-02-09 10:46:31',122.909620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17260,12,12,'2023-02-09 10:46:31',123.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17261,12,12,'2023-02-09 10:46:31',123.345999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17262,12,12,'2023-02-09 10:46:31',123.916626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17263,12,12,'2023-02-09 10:46:31',123.927619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17264,12,12,'2023-02-09 10:46:31',124.345622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17265,12,12,'2023-02-09 10:46:31',124.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17266,12,12,'2023-02-09 10:46:31',124.934625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17267,12,12,'2023-02-09 10:46:31',124.945618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17268,12,12,'2023-02-09 10:46:31',125.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17269,12,12,'2023-02-09 10:46:31',125.384994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17270,12,12,'2023-02-09 10:46:31',125.955621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17271,12,12,'2023-02-09 10:46:31',125.966625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17272,12,12,'2023-02-09 10:46:31',126.385623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17273,12,12,'2023-02-09 10:46:31',126.404995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17274,12,12,'2023-02-09 10:46:31',126.978619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17275,12,12,'2023-02-09 10:46:31',126.989622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17276,12,12,'2023-02-09 10:46:31',127.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17277,12,12,'2023-02-09 10:46:31',127.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17278,12,12,'2023-02-09 10:46:31',127.994626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17279,12,12,'2023-02-09 10:46:31',128.005620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17280,12,12,'2023-02-09 10:46:31',128.425624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17281,12,12,'2023-02-09 10:46:31',128.480994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17282,12,12,'2023-02-09 10:46:31',129.017624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17283,12,12,'2023-02-09 10:46:31',129.028618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17284,12,12,'2023-02-09 10:46:31',129.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17285,12,12,'2023-02-09 10:46:31',129.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17286,12,12,'2023-02-09 10:46:31',130.038620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17287,12,12,'2023-02-09 10:46:31',130.049624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17288,12,12,'2023-02-09 10:46:31',130.465625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17289,12,12,'2023-02-09 10:46:31',130.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17290,12,12,'2023-02-09 10:46:31',131.056619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17291,12,12,'2023-02-09 10:46:31',131.067623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17292,12,12,'2023-02-09 10:46:31',131.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17293,12,12,'2023-02-09 10:46:31',131.504997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17294,12,12,'2023-02-09 10:46:31',132.077625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17295,12,12,'2023-02-09 10:46:31',132.088619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17296,12,12,'2023-02-09 10:46:31',132.505626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17297,12,12,'2023-02-09 10:46:31',132.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17298,12,12,'2023-02-09 10:46:31',133.095624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17299,12,12,'2023-02-09 10:46:31',133.106618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17300,12,12,'2023-02-09 10:46:31',133.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17301,12,12,'2023-02-09 10:46:31',133.581993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17302,12,12,'2023-02-09 10:46:31',134.116621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17303,12,12,'2023-02-09 10:46:31',134.127624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17304,12,12,'2023-02-09 10:46:31',134.545616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17305,12,12,'2023-02-09 10:46:31',134.565995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17306,12,12,'2023-02-09 10:46:31',135.134620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17307,12,12,'2023-02-09 10:46:31',135.145623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17308,12,12,'2023-02-09 10:46:31',135.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17309,12,12,'2023-02-09 10:46:31',135.584999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17310,12,12,'2023-02-09 10:46:31',136.155626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17311,12,12,'2023-02-09 10:46:31',136.166620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17312,12,12,'2023-02-09 10:46:31',136.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17313,12,12,'2023-02-09 10:46:31',136.605000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17314,12,12,'2023-02-09 10:46:31',137.178624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17315,12,12,'2023-02-09 10:46:31',137.189617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17316,12,12,'2023-02-09 10:46:31',137.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17317,12,12,'2023-02-09 10:46:31',137.660999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17318,12,12,'2023-02-09 10:46:31',138.195617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17319,12,12,'2023-02-09 10:46:31',138.206621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17320,12,12,'2023-02-09 10:46:31',138.625619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17321,12,12,'2023-02-09 10:46:31',138.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17322,12,12,'2023-02-09 10:46:31',139.217619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17323,12,12,'2023-02-09 10:46:31',139.228623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17324,12,12,'2023-02-09 10:46:31',139.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17325,12,12,'2023-02-09 10:46:31',139.665997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17326,12,12,'2023-02-09 10:46:31',140.238625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17327,12,12,'2023-02-09 10:46:31',140.248623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17328,12,12,'2023-02-09 10:46:31',140.665620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17329,12,12,'2023-02-09 10:46:31',140.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17330,12,12,'2023-02-09 10:46:31',141.256624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17331,12,12,'2023-02-09 10:46:31',141.266622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17332,12,12,'2023-02-09 10:46:31',141.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17333,12,12,'2023-02-09 10:46:31',141.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17334,12,12,'2023-02-09 10:46:31',142.274623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17335,12,12,'2023-02-09 10:46:31',142.285617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17336,12,12,'2023-02-09 10:46:31',142.705621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17337,12,12,'2023-02-09 10:46:31',142.724993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17338,12,12,'2023-02-09 10:46:31',143.295619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17339,12,12,'2023-02-09 10:46:31',143.306623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17340,12,12,'2023-02-09 10:46:31',143.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17341,12,12,'2023-02-09 10:46:31',143.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17342,12,12,'2023-02-09 10:46:31',144.317621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17343,12,12,'2023-02-09 10:46:31',144.328625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17344,12,12,'2023-02-09 10:46:31',144.745622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17345,12,12,'2023-02-09 10:46:31',144.778995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17346,12,12,'2023-02-09 10:46:31',145.334625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17347,12,12,'2023-02-09 10:46:31',145.345618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17348,12,12,'2023-02-09 10:46:31',145.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17349,12,12,'2023-02-09 10:46:31',145.820993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17350,12,12,'2023-02-09 10:46:31',146.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17351,12,12,'2023-02-09 10:46:31',146.367620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17352,12,12,'2023-02-09 10:46:31',146.785623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17353,12,12,'2023-02-09 10:46:31',146.804995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17354,12,12,'2023-02-09 10:46:31',147.378619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17355,12,12,'2023-02-09 10:46:31',147.388617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17356,12,12,'2023-02-09 10:46:31',147.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17357,12,12,'2023-02-09 10:46:31',147.824995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17358,12,12,'2023-02-09 10:46:31',148.396618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17359,12,12,'2023-02-09 10:46:31',148.407621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17360,12,12,'2023-02-09 10:46:31',148.825624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17361,12,12,'2023-02-09 10:46:31',148.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17362,12,12,'2023-02-09 10:46:31',149.417624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17363,12,12,'2023-02-09 10:46:31',149.428618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17364,12,12,'2023-02-09 10:46:31',149.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17365,12,12,'2023-02-09 10:46:31',149.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17366,12,12,'2023-02-09 10:46:31',150.435623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17367,12,12,'2023-02-09 10:46:31',150.446617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17368,12,12,'2023-02-09 10:46:31',150.865625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17369,12,12,'2023-02-09 10:46:31',150.886003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17370,12,12,'2023-02-09 10:46:31',151.456619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17371,12,12,'2023-02-09 10:46:31',151.467623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17372,12,12,'2023-02-09 10:46:31',151.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17373,12,12,'2023-02-09 10:46:31',151.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17374,12,12,'2023-02-09 10:46:31',152.474618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17375,12,12,'2023-02-09 10:46:31',152.485622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17376,12,12,'2023-02-09 10:46:31',152.905626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17377,12,12,'2023-02-09 10:46:31',152.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17378,12,12,'2023-02-09 10:46:31',153.495624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17379,12,12,'2023-02-09 10:46:31',153.506618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17380,12,12,'2023-02-09 10:46:31',153.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17381,12,12,'2023-02-09 10:46:31',153.980997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17382,12,12,'2023-02-09 10:46:31',154.517626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17383,12,12,'2023-02-09 10:46:31',154.528620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17384,12,12,'2023-02-09 10:46:31',154.945627,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17385,12,12,'2023-02-09 10:46:31',154.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17386,12,12,'2023-02-09 10:46:31',155.534620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17387,12,12,'2023-02-09 10:46:31',155.545623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17388,12,12,'2023-02-09 10:46:31',155.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17389,12,12,'2023-02-09 10:46:31',155.999000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17390,12,12,'2023-02-09 10:46:31',156.557617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17391,12,12,'2023-02-09 10:46:31',156.568621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17392,12,12,'2023-02-09 10:46:31',156.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17393,12,12,'2023-02-09 10:46:31',157.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17394,12,12,'2023-02-09 10:46:31',157.578624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17395,12,12,'2023-02-09 10:46:31',157.589617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17396,12,12,'2023-02-09 10:46:31',158.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17397,12,12,'2023-02-09 10:46:31',158.060999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17398,12,12,'2023-02-09 10:46:31',158.596623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17399,12,12,'2023-02-09 10:46:31',158.608622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17400,12,12,'2023-02-09 10:46:31',159.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17401,12,12,'2023-02-09 10:46:31',159.045001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17402,12,12,'2023-02-09 10:46:31',159.618625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17403,12,12,'2023-02-09 10:46:31',159.630624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17404,12,12,'2023-02-09 10:46:31',160.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17405,12,12,'2023-02-09 10:46:31',160.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17406,12,12,'2023-02-09 10:46:31',160.635618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17407,12,12,'2023-02-09 10:46:31',160.646622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17408,12,12,'2023-02-09 10:46:31',161.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17409,12,12,'2023-02-09 10:46:31',161.085002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17410,12,12,'2023-02-09 10:46:31',161.657620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17411,12,12,'2023-02-09 10:46:31',161.668624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17412,12,12,'2023-02-09 10:46:31',162.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17413,12,12,'2023-02-09 10:46:31',162.105998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17414,12,12,'2023-02-09 10:46:31',162.674623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17415,12,12,'2023-02-09 10:46:31',162.687618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17416,12,12,'2023-02-09 10:46:31',163.105621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17417,12,12,'2023-02-09 10:46:31',163.125003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17418,12,12,'2023-02-09 10:46:31',163.696625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17419,12,12,'2023-02-09 10:46:31',163.707619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17420,12,12,'2023-02-09 10:46:31',164.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17421,12,12,'2023-02-09 10:46:31',164.144993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17422,12,12,'2023-02-09 10:46:31',164.717621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17423,12,12,'2023-02-09 10:46:31',164.728625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17424,12,12,'2023-02-09 10:46:31',165.145622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17425,12,12,'2023-02-09 10:46:31',165.201002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17426,12,12,'2023-02-09 10:46:31',165.736626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17427,12,12,'2023-02-09 10:46:31',165.747620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17428,12,12,'2023-02-09 10:46:31',166.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17429,12,12,'2023-02-09 10:46:31',166.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17430,12,12,'2023-02-09 10:46:31',166.757622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17431,12,12,'2023-02-09 10:46:31',166.769622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17432,12,12,'2023-02-09 10:46:31',167.185623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17433,12,12,'2023-02-09 10:46:31',167.206001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17434,12,12,'2023-02-09 10:46:31',167.775621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17435,12,12,'2023-02-09 10:46:31',167.787621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17436,12,12,'2023-02-09 10:46:31',168.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17437,12,12,'2023-02-09 10:46:31',168.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17438,12,12,'2023-02-09 10:46:31',168.796618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17439,12,12,'2023-02-09 10:46:31',168.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17440,12,12,'2023-02-09 10:46:31',169.225624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17441,12,12,'2023-02-09 10:46:31',169.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17442,12,12,'2023-02-09 10:46:31',169.818620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17443,12,12,'2023-02-09 10:46:31',169.830619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17444,12,12,'2023-02-09 10:46:31',170.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17445,12,12,'2023-02-09 10:46:31',170.264996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17446,12,12,'2023-02-09 10:46:31',170.835623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17447,12,12,'2023-02-09 10:46:31',170.846617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17448,12,12,'2023-02-09 10:46:31',171.265625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17449,12,12,'2023-02-09 10:46:31',171.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17450,12,12,'2023-02-09 10:46:31',171.857625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17451,12,12,'2023-02-09 10:46:31',171.868619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17452,12,12,'2023-02-09 10:46:31',172.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17453,12,12,'2023-02-09 10:46:31',172.318998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17454,12,12,'2023-02-09 10:46:31',172.878621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17455,12,12,'2023-02-09 10:46:31',172.889625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17456,12,12,'2023-02-09 10:46:31',173.305626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17457,12,12,'2023-02-09 10:46:31',173.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17458,12,12,'2023-02-09 10:46:31',173.897626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17459,12,12,'2023-02-09 10:46:31',173.907624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17460,12,12,'2023-02-09 10:46:31',174.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17461,12,12,'2023-02-09 10:46:31',174.380997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17462,12,12,'2023-02-09 10:46:31',174.918622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17463,12,12,'2023-02-09 10:46:31',174.928620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17464,12,12,'2023-02-09 10:46:31',175.345616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17465,12,12,'2023-02-09 10:46:31',175.364999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17466,12,12,'2023-02-09 10:46:31',175.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17467,12,12,'2023-02-09 10:46:31',175.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17468,12,12,'2023-02-09 10:46:31',176.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17469,12,12,'2023-02-09 10:46:31',176.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17470,12,12,'2023-02-09 10:46:31',176.958623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17471,12,12,'2023-02-09 10:46:31',176.969617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17472,12,12,'2023-02-09 10:46:31',177.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17473,12,12,'2023-02-09 10:46:31',177.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17474,12,12,'2023-02-09 10:46:31',177.975616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17475,12,12,'2023-02-09 10:46:31',177.986620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17476,12,12,'2023-02-09 10:46:31',178.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17477,12,12,'2023-02-09 10:46:31',178.425996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17478,12,12,'2023-02-09 10:46:31',178.997618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17479,12,12,'2023-02-09 10:46:31',179.008622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17480,12,12,'2023-02-09 10:46:31',179.425618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17481,12,12,'2023-02-09 10:46:31',179.445001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17482,12,12,'2023-02-09 10:46:31',180.014622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17483,12,12,'2023-02-09 10:46:31',180.025625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17484,12,12,'2023-02-09 10:46:31',180.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17485,12,12,'2023-02-09 10:46:31',180.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17486,12,12,'2023-02-09 10:46:31',181.036624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17487,12,12,'2023-02-09 10:46:31',181.048623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17488,12,12,'2023-02-09 10:46:31',181.465619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17489,12,12,'2023-02-09 10:46:31',181.485002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17490,12,12,'2023-02-09 10:46:31',182.057620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17491,12,12,'2023-02-09 10:46:31',182.068624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17492,12,12,'2023-02-09 10:46:31',182.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17493,12,12,'2023-02-09 10:46:31',182.505002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17494,12,12,'2023-02-09 10:46:31',183.076625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17495,12,12,'2023-02-09 10:46:31',183.087618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17496,12,12,'2023-02-09 10:46:31',183.505620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17497,12,12,'2023-02-09 10:46:31',183.538994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17498,12,12,'2023-02-09 10:46:31',184.097621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17499,12,12,'2023-02-09 10:46:31',184.107619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17500,12,12,'2023-02-09 10:46:31',184.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17501,12,12,'2023-02-09 10:46:31',184.581002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17502,12,12,'2023-02-09 10:46:31',185.115620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17503,12,12,'2023-02-09 10:46:31',185.126624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17504,12,12,'2023-02-09 10:46:31',185.545621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17505,12,12,'2023-02-09 10:46:31',185.564994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17506,12,12,'2023-02-09 10:46:31',186.136626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17507,12,12,'2023-02-09 10:46:31',186.147620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17508,12,12,'2023-02-09 10:46:31',186.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17509,12,12,'2023-02-09 10:46:31',186.584994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17510,12,12,'2023-02-09 10:46:31',187.158618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17511,12,12,'2023-02-09 10:46:31',187.169622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17512,12,12,'2023-02-09 10:46:31',187.585623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17513,12,12,'2023-02-09 10:46:31',187.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17514,12,12,'2023-02-09 10:46:31',188.175621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17515,12,12,'2023-02-09 10:46:31',188.186625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17516,12,12,'2023-02-09 10:46:31',188.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17517,12,12,'2023-02-09 10:46:31',188.624995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17518,12,12,'2023-02-09 10:46:31',189.197623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17519,12,12,'2023-02-09 10:46:31',189.208617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17520,12,12,'2023-02-09 10:46:31',189.625624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17521,12,12,'2023-02-09 10:46:31',189.646002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17522,12,12,'2023-02-09 10:46:31',190.214616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17523,12,12,'2023-02-09 10:46:31',190.225620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17524,12,12,'2023-02-09 10:46:31',190.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17525,12,12,'2023-02-09 10:46:31',190.664996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17526,12,12,'2023-02-09 10:46:31',191.236619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17527,12,12,'2023-02-09 10:46:31',191.247622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17528,12,12,'2023-02-09 10:46:31',191.665625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17529,12,12,'2023-02-09 10:46:31',191.684997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17530,12,12,'2023-02-09 10:46:31',192.258621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17531,12,12,'2023-02-09 10:46:31',192.269624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17532,12,12,'2023-02-09 10:46:31',192.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17533,12,12,'2023-02-09 10:46:31',192.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17534,12,12,'2023-02-09 10:46:31',193.276620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17535,12,12,'2023-02-09 10:46:31',193.286618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17536,12,12,'2023-02-09 10:46:31',193.705626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17537,12,12,'2023-02-09 10:46:31',193.762002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17538,12,12,'2023-02-09 10:46:31',194.298622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17539,12,12,'2023-02-09 10:46:31',194.308620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17540,12,12,'2023-02-09 10:46:31',194.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17541,12,12,'2023-02-09 10:46:31',194.745994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17542,12,12,'2023-02-09 10:46:31',195.315625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17543,12,12,'2023-02-09 10:46:31',195.326619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17544,12,12,'2023-02-09 10:46:31',195.745627,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17545,12,12,'2023-02-09 10:46:31',195.764999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17546,12,12,'2023-02-09 10:46:31',196.337617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17547,12,12,'2023-02-09 10:46:31',196.348621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17548,12,12,'2023-02-09 10:46:31',196.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17549,12,12,'2023-02-09 10:46:31',196.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17550,12,12,'2023-02-09 10:46:31',197.354620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17551,12,12,'2023-02-09 10:46:31',197.365624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17552,12,12,'2023-02-09 10:46:31',197.785617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17553,12,12,'2023-02-09 10:46:31',197.805000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17554,12,12,'2023-02-09 10:46:31',198.376622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17555,12,12,'2023-02-09 10:46:31',198.387626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17556,12,12,'2023-02-09 10:46:31',198.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17557,12,12,'2023-02-09 10:46:31',198.860999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17558,12,12,'2023-02-09 10:46:31',199.397618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17559,12,12,'2023-02-09 10:46:31',199.408622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17560,12,12,'2023-02-09 10:46:31',199.825618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17561,12,12,'2023-02-09 10:46:31',199.845001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17562,12,12,'2023-02-09 10:46:31',200.415617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17563,12,12,'2023-02-09 10:46:31',200.426621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17564,12,12,'2023-02-09 10:46:31',200.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17565,12,12,'2023-02-09 10:46:31',200.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17566,12,12,'2023-02-09 10:46:31',201.437619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17567,12,12,'2023-02-09 10:46:31',201.447617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17568,12,12,'2023-02-09 10:46:31',201.865619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17569,12,12,'2023-02-09 10:46:31',201.885002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17570,12,12,'2023-02-09 10:46:31',202.455618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17571,12,12,'2023-02-09 10:46:31',202.466622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17572,12,12,'2023-02-09 10:46:31',202.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17573,12,12,'2023-02-09 10:46:31',202.905002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17574,12,12,'2023-02-09 10:46:31',203.476625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17575,12,12,'2023-02-09 10:46:31',203.487618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17576,12,12,'2023-02-09 10:46:31',203.905620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17577,12,12,'2023-02-09 10:46:31',203.925003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17578,12,12,'2023-02-09 10:46:31',204.498617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17579,12,12,'2023-02-09 10:46:31',204.509620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17580,12,12,'2023-02-09 10:46:31',204.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17581,12,12,'2023-02-09 10:46:31',204.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17582,12,12,'2023-02-09 10:46:31',205.515620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17583,12,12,'2023-02-09 10:46:31',205.526624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17584,12,12,'2023-02-09 10:46:31',205.945621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17585,12,12,'2023-02-09 10:46:31',206.001002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17586,12,12,'2023-02-09 10:46:31',206.537622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17587,12,12,'2023-02-09 10:46:31',206.548626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17588,12,12,'2023-02-09 10:46:31',206.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17589,12,12,'2023-02-09 10:46:31',206.984994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17590,12,12,'2023-02-09 10:46:31',207.554625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17591,12,12,'2023-02-09 10:46:31',207.565619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17592,12,12,'2023-02-09 10:46:31',207.985622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17593,12,12,'2023-02-09 10:46:31',208.004995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17594,12,12,'2023-02-09 10:46:31',208.576617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17595,12,12,'2023-02-09 10:46:31',208.587621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17596,12,12,'2023-02-09 10:46:31',209.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17597,12,12,'2023-02-09 10:46:31',209.024995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17598,12,12,'2023-02-09 10:46:31',209.595622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17599,12,12,'2023-02-09 10:46:31',209.606626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17600,12,12,'2023-02-09 10:46:31',210.025623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17601,12,12,'2023-02-09 10:46:31',210.044996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17602,12,12,'2023-02-09 10:46:31',210.616618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17603,12,12,'2023-02-09 10:46:31',210.627622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17604,12,12,'2023-02-09 10:46:31',211.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17605,12,12,'2023-02-09 10:46:31',211.078997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17606,12,12,'2023-02-09 10:46:31',211.638620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17607,12,12,'2023-02-09 10:46:31',211.649624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17608,12,12,'2023-02-09 10:46:31',212.065625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17609,12,12,'2023-02-09 10:46:31',212.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17610,12,12,'2023-02-09 10:46:31',212.655623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17611,12,12,'2023-02-09 10:46:31',212.665621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17612,12,12,'2023-02-09 10:46:31',213.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17613,12,12,'2023-02-09 10:46:31',213.104997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17614,12,12,'2023-02-09 10:46:31',213.677625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17615,12,12,'2023-02-09 10:46:31',213.688619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17616,12,12,'2023-02-09 10:46:31',214.105626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17617,12,12,'2023-02-09 10:46:31',214.124998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17618,12,12,'2023-02-09 10:46:31',214.698622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17619,12,12,'2023-02-09 10:46:31',214.709625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17620,12,12,'2023-02-09 10:46:31',215.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17621,12,12,'2023-02-09 10:46:31',215.180997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17622,12,12,'2023-02-09 10:46:31',215.716621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17623,12,12,'2023-02-09 10:46:31',215.727624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17624,12,12,'2023-02-09 10:46:31',216.145616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17625,12,12,'2023-02-09 10:46:31',216.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17626,12,12,'2023-02-09 10:46:31',216.737617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17627,12,12,'2023-02-09 10:46:31',216.748621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17628,12,12,'2023-02-09 10:46:31',217.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17629,12,12,'2023-02-09 10:46:31',217.185995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17630,12,12,'2023-02-09 10:46:31',217.755626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17631,12,12,'2023-02-09 10:46:31',217.766620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17632,12,12,'2023-02-09 10:46:31',218.185617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17633,12,12,'2023-02-09 10:46:31',218.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17634,12,12,'2023-02-09 10:46:31',218.776622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17635,12,12,'2023-02-09 10:46:31',218.787626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17636,12,12,'2023-02-09 10:46:31',219.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17637,12,12,'2023-02-09 10:46:31',219.225000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17638,12,12,'2023-02-09 10:46:31',219.795617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17639,12,12,'2023-02-09 10:46:31',219.806621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17640,12,12,'2023-02-09 10:46:31',220.225618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17641,12,12,'2023-02-09 10:46:31',220.245001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17642,12,12,'2023-02-09 10:46:31',220.816623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17643,12,12,'2023-02-09 10:46:31',220.827617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17644,12,12,'2023-02-09 10:46:31',221.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17645,12,12,'2023-02-09 10:46:31',221.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17646,12,12,'2023-02-09 10:46:31',221.838625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17647,12,12,'2023-02-09 10:46:31',221.849619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17648,12,12,'2023-02-09 10:46:31',222.265619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17649,12,12,'2023-02-09 10:46:31',222.298993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17650,12,12,'2023-02-09 10:46:31',222.855618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17651,12,12,'2023-02-09 10:46:31',222.866622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17652,12,12,'2023-02-09 10:46:31',223.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17653,12,12,'2023-02-09 10:46:31',223.305002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17654,12,12,'2023-02-09 10:46:31',223.877620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17655,12,12,'2023-02-09 10:46:31',223.888624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17656,12,12,'2023-02-09 10:46:31',224.305620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17657,12,12,'2023-02-09 10:46:31',224.361001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17658,12,12,'2023-02-09 10:46:31',224.898617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17659,12,12,'2023-02-09 10:46:31',224.909620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17660,12,12,'2023-02-09 10:46:31',225.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17661,12,12,'2023-02-09 10:46:31',225.344993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17662,12,12,'2023-02-09 10:46:31',225.916626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17663,12,12,'2023-02-09 10:46:31',225.927619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17664,12,12,'2023-02-09 10:46:31',226.345621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17665,12,12,'2023-02-09 10:46:31',226.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17666,12,12,'2023-02-09 10:46:31',226.934625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17667,12,12,'2023-02-09 10:46:31',226.945618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17668,12,12,'2023-02-09 10:46:31',227.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17669,12,12,'2023-02-09 10:46:31',227.384994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17670,12,12,'2023-02-09 10:46:31',227.955621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17671,12,12,'2023-02-09 10:46:31',227.966625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17672,12,12,'2023-02-09 10:46:31',228.385622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17673,12,12,'2023-02-09 10:46:31',228.404995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17674,12,12,'2023-02-09 10:46:31',228.978619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17675,12,12,'2023-02-09 10:46:31',228.988617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17676,12,12,'2023-02-09 10:46:31',229.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17677,12,12,'2023-02-09 10:46:31',229.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17678,12,12,'2023-02-09 10:46:31',229.995622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17679,12,12,'2023-02-09 10:46:31',230.005620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17680,12,12,'2023-02-09 10:46:31',230.425623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17681,12,12,'2023-02-09 10:46:31',230.444996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17682,12,12,'2023-02-09 10:46:31',231.017624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17683,12,12,'2023-02-09 10:46:31',231.028618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17684,12,12,'2023-02-09 10:46:31',231.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17685,12,12,'2023-02-09 10:46:31',231.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17686,12,12,'2023-02-09 10:46:31',232.038620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17687,12,12,'2023-02-09 10:46:31',232.049624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17688,12,12,'2023-02-09 10:46:31',232.465624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17689,12,12,'2023-02-09 10:46:31',232.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17690,12,12,'2023-02-09 10:46:31',233.056619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17691,12,12,'2023-02-09 10:46:31',233.067623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17692,12,12,'2023-02-09 10:46:31',233.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17693,12,12,'2023-02-09 10:46:31',233.505993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17694,12,12,'2023-02-09 10:46:31',234.077625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17695,12,12,'2023-02-09 10:46:31',234.088619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17696,12,12,'2023-02-09 10:46:31',234.505625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17697,12,12,'2023-02-09 10:46:31',234.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17698,12,12,'2023-02-09 10:46:31',235.095624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17699,12,12,'2023-02-09 10:46:31',235.106618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17700,12,12,'2023-02-09 10:46:31',235.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17701,12,12,'2023-02-09 10:46:31',235.580997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17702,12,12,'2023-02-09 10:46:31',236.116621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17703,12,12,'2023-02-09 10:46:31',236.127624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17704,12,12,'2023-02-09 10:46:31',236.545627,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17705,12,12,'2023-02-09 10:46:31',236.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17706,12,12,'2023-02-09 10:46:31',237.134619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17707,12,12,'2023-02-09 10:46:31',237.145623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17708,12,12,'2023-02-09 10:46:31',237.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17709,12,12,'2023-02-09 10:46:31',237.584999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17710,12,12,'2023-02-09 10:46:31',238.155626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17711,12,12,'2023-02-09 10:46:31',238.166620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17712,12,12,'2023-02-09 10:46:31',238.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17713,12,12,'2023-02-09 10:46:31',238.619001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17714,12,12,'2023-02-09 10:46:31',239.178624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17715,12,12,'2023-02-09 10:46:31',239.189617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17716,12,12,'2023-02-09 10:46:31',239.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17717,12,12,'2023-02-09 10:46:31',239.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17718,12,12,'2023-02-09 10:46:31',240.195617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17719,12,12,'2023-02-09 10:46:31',240.206621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17720,12,12,'2023-02-09 10:46:31',240.625618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17721,12,12,'2023-02-09 10:46:31',240.680999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17722,12,12,'2023-02-09 10:46:31',241.217619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17723,12,12,'2023-02-09 10:46:31',241.228623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17724,12,12,'2023-02-09 10:46:31',241.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17725,12,12,'2023-02-09 10:46:31',241.665001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17726,12,12,'2023-02-09 10:46:31',242.238625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17727,12,12,'2023-02-09 10:46:31',242.249619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17728,12,12,'2023-02-09 10:46:31',242.665619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17729,12,12,'2023-02-09 10:46:31',242.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17730,12,12,'2023-02-09 10:46:31',243.256624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17731,12,12,'2023-02-09 10:46:31',243.267618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17732,12,12,'2023-02-09 10:46:31',243.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17733,12,12,'2023-02-09 10:46:31',243.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17734,12,12,'2023-02-09 10:46:31',244.274623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17735,12,12,'2023-02-09 10:46:31',244.285617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17736,12,12,'2023-02-09 10:46:31',244.705620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17737,12,12,'2023-02-09 10:46:31',244.725999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17738,12,12,'2023-02-09 10:46:31',245.295619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17739,12,12,'2023-02-09 10:46:31',245.306623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17740,12,12,'2023-02-09 10:46:31',245.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17741,12,12,'2023-02-09 10:46:31',245.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17742,12,12,'2023-02-09 10:46:31',246.318617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17743,12,12,'2023-02-09 10:46:31',246.328625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17744,12,12,'2023-02-09 10:46:31',246.745621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17745,12,12,'2023-02-09 10:46:31',246.764994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17746,12,12,'2023-02-09 10:46:31',247.335620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17747,12,12,'2023-02-09 10:46:31',247.346624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17748,12,12,'2023-02-09 10:46:31',247.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17749,12,12,'2023-02-09 10:46:31',247.784994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17750,12,12,'2023-02-09 10:46:31',248.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17751,12,12,'2023-02-09 10:46:31',248.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17752,12,12,'2023-02-09 10:46:31',248.785622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17753,12,12,'2023-02-09 10:46:31',248.840993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17754,12,12,'2023-02-09 10:46:31',249.378619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17755,12,12,'2023-02-09 10:46:31',249.389622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17756,12,12,'2023-02-09 10:46:31',249.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17757,12,12,'2023-02-09 10:46:31',249.838996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17758,12,12,'2023-02-09 10:46:31',250.399625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17759,12,12,'2023-02-09 10:46:31',250.413626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17760,12,12,'2023-02-09 10:46:31',250.825623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17761,12,12,'2023-02-09 10:46:31',250.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17762,12,12,'2023-02-09 10:46:31',251.417624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17763,12,12,'2023-02-09 10:46:31',251.428618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17764,12,12,'2023-02-09 10:46:31',251.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17765,12,12,'2023-02-09 10:46:31',251.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17766,12,12,'2023-02-09 10:46:31',252.435623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17767,12,12,'2023-02-09 10:46:31',252.446627,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17768,12,12,'2023-02-09 10:46:31',252.865624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17769,12,12,'2023-02-09 10:46:31',252.884997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17770,12,12,'2023-02-09 10:46:31',253.456619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17771,12,12,'2023-02-09 10:46:31',253.467623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17772,12,12,'2023-02-09 10:46:31',253.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17773,12,12,'2023-02-09 10:46:31',253.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17774,12,12,'2023-02-09 10:46:31',254.474618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17775,12,12,'2023-02-09 10:46:31',254.485622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17776,12,12,'2023-02-09 10:46:31',254.905625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17777,12,12,'2023-02-09 10:46:31',254.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17778,12,12,'2023-02-09 10:46:31',255.495624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17779,12,12,'2023-02-09 10:46:31',255.506618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17780,12,12,'2023-02-09 10:46:31',255.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17781,12,12,'2023-02-09 10:46:31',255.944998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17782,12,12,'2023-02-09 10:46:31',256.518622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17783,12,12,'2023-02-09 10:46:31',256.529626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17784,12,12,'2023-02-09 10:46:31',256.945616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17785,12,12,'2023-02-09 10:46:31',257.000997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17786,12,12,'2023-02-09 10:46:31',257.535625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17787,12,12,'2023-02-09 10:46:31',257.546619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17788,12,12,'2023-02-09 10:46:31',257.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17789,12,12,'2023-02-09 10:46:31',257.984999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17790,12,12,'2023-02-09 10:46:31',258.557617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17791,12,12,'2023-02-09 10:46:31',258.568621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17792,12,12,'2023-02-09 10:46:31',258.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17793,12,12,'2023-02-09 10:46:32',259.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17794,12,12,'2023-02-09 10:46:32',259.578624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17795,12,12,'2023-02-09 10:46:32',259.589617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17796,12,12,'2023-02-09 10:46:32',260.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17797,12,12,'2023-02-09 10:46:32',260.025000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17798,12,12,'2023-02-09 10:46:32',260.596623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17799,12,12,'2023-02-09 10:46:32',260.607616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17800,12,12,'2023-02-09 10:46:32',261.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17801,12,12,'2023-02-09 10:46:32',261.080999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17802,12,12,'2023-02-09 10:46:32',261.614621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17803,12,12,'2023-02-09 10:46:32',261.625625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17804,12,12,'2023-02-09 10:46:32',262.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17805,12,12,'2023-02-09 10:46:32',262.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17806,12,12,'2023-02-09 10:46:32',262.635618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17807,12,12,'2023-02-09 10:46:32',262.646622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17808,12,12,'2023-02-09 10:46:32',263.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17809,12,12,'2023-02-09 10:46:32',263.085002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17810,12,12,'2023-02-09 10:46:32',263.657620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17811,12,12,'2023-02-09 10:46:32',263.668624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17812,12,12,'2023-02-09 10:46:32',264.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17813,12,12,'2023-02-09 10:46:32',264.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17814,12,12,'2023-02-09 10:46:32',264.675619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17815,12,12,'2023-02-09 10:46:32',264.686623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17816,12,12,'2023-02-09 10:46:32',265.105620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17817,12,12,'2023-02-09 10:46:32',265.124993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17818,12,12,'2023-02-09 10:46:32',265.696625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17819,12,12,'2023-02-09 10:46:32',265.707619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17820,12,12,'2023-02-09 10:46:32',266.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17821,12,12,'2023-02-09 10:46:32',266.144993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17822,12,12,'2023-02-09 10:46:32',266.718617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17823,12,12,'2023-02-09 10:46:32',266.729621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17824,12,12,'2023-02-09 10:46:32',267.145621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17825,12,12,'2023-02-09 10:46:32',267.201002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17826,12,12,'2023-02-09 10:46:32',267.736626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17827,12,12,'2023-02-09 10:46:32',267.747620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17828,12,12,'2023-02-09 10:46:32',268.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17829,12,12,'2023-02-09 10:46:32',268.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17830,12,12,'2023-02-09 10:46:32',268.757622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17831,12,12,'2023-02-09 10:46:32',268.768626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17832,12,12,'2023-02-09 10:46:32',269.185622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17833,12,12,'2023-02-09 10:46:32',269.204995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17834,12,12,'2023-02-09 10:46:32',269.775621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17835,12,12,'2023-02-09 10:46:32',269.786625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17836,12,12,'2023-02-09 10:46:32',270.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17837,12,12,'2023-02-09 10:46:32',270.260994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17838,12,12,'2023-02-09 10:46:32',270.796618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17839,12,12,'2023-02-09 10:46:32',270.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17840,12,12,'2023-02-09 10:46:32',271.225623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17841,12,12,'2023-02-09 10:46:32',271.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17842,12,12,'2023-02-09 10:46:32',271.814616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17843,12,12,'2023-02-09 10:46:32',271.825620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17844,12,12,'2023-02-09 10:46:32',272.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17845,12,12,'2023-02-09 10:46:32',272.278997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17846,12,12,'2023-02-09 10:46:32',272.835623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17847,12,12,'2023-02-09 10:46:32',272.846616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17848,12,12,'2023-02-09 10:46:32',273.265624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17849,12,12,'2023-02-09 10:46:32',273.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17850,12,12,'2023-02-09 10:46:32',273.857625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17851,12,12,'2023-02-09 10:46:32',273.868619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17852,12,12,'2023-02-09 10:46:32',274.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17853,12,12,'2023-02-09 10:46:32',274.304997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17854,12,12,'2023-02-09 10:46:32',274.874618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17855,12,12,'2023-02-09 10:46:32',274.886617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17856,12,12,'2023-02-09 10:46:32',275.305625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17857,12,12,'2023-02-09 10:46:32',275.360996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17858,12,12,'2023-02-09 10:46:32',275.897626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17859,12,12,'2023-02-09 10:46:32',275.908620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17860,12,12,'2023-02-09 10:46:32',276.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17861,12,12,'2023-02-09 10:46:32',276.344998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17862,12,12,'2023-02-09 10:46:32',276.918622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17863,12,12,'2023-02-09 10:46:32',276.929626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17864,12,12,'2023-02-09 10:46:32',277.345626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17865,12,12,'2023-02-09 10:46:32',277.379000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17866,12,12,'2023-02-09 10:46:32',277.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17867,12,12,'2023-02-09 10:46:32',277.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17868,12,12,'2023-02-09 10:46:32',278.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17869,12,12,'2023-02-09 10:46:32',278.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17870,12,12,'2023-02-09 10:46:32',278.954620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17871,12,12,'2023-02-09 10:46:32',278.965624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17872,12,12,'2023-02-09 10:46:32',279.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17873,12,12,'2023-02-09 10:46:32',279.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17874,12,12,'2023-02-09 10:46:32',279.975626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17875,12,12,'2023-02-09 10:46:32',279.986620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17876,12,12,'2023-02-09 10:46:32',280.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17877,12,12,'2023-02-09 10:46:32',280.460999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17878,12,12,'2023-02-09 10:46:32',280.997618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17879,12,12,'2023-02-09 10:46:32',281.008622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17880,12,12,'2023-02-09 10:46:32',281.425618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17881,12,12,'2023-02-09 10:46:32',281.445001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17882,12,12,'2023-02-09 10:46:32',282.014621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17883,12,12,'2023-02-09 10:46:32',282.025625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17884,12,12,'2023-02-09 10:46:32',282.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17885,12,12,'2023-02-09 10:46:32',282.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17886,12,12,'2023-02-09 10:46:32',283.037619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17887,12,12,'2023-02-09 10:46:32',283.048623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17888,12,12,'2023-02-09 10:46:32',283.465619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17889,12,12,'2023-02-09 10:46:32',283.485002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17890,12,12,'2023-02-09 10:46:32',284.058626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17891,12,12,'2023-02-09 10:46:32',284.069619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17892,12,12,'2023-02-09 10:46:32',284.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17893,12,12,'2023-02-09 10:46:32',284.505002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17894,12,12,'2023-02-09 10:46:32',285.076625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17895,12,12,'2023-02-09 10:46:32',285.087618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17896,12,12,'2023-02-09 10:46:32',285.505620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17897,12,12,'2023-02-09 10:46:32',285.525003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17898,12,12,'2023-02-09 10:46:32',286.096625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17899,12,12,'2023-02-09 10:46:32',286.107619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17900,12,12,'2023-02-09 10:46:32',286.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17901,12,12,'2023-02-09 10:46:32',286.544993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17902,12,12,'2023-02-09 10:46:32',287.115620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17903,12,12,'2023-02-09 10:46:32',287.126624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17904,12,12,'2023-02-09 10:46:32',287.545621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17905,12,12,'2023-02-09 10:46:32',287.601998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17906,12,12,'2023-02-09 10:46:32',288.136626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17907,12,12,'2023-02-09 10:46:32',288.147620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17908,12,12,'2023-02-09 10:46:32',288.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17909,12,12,'2023-02-09 10:46:32',288.598995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17910,12,12,'2023-02-09 10:46:32',289.154625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17911,12,12,'2023-02-09 10:46:32',289.165619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17912,12,12,'2023-02-09 10:46:32',289.585622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17913,12,12,'2023-02-09 10:46:32',289.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17914,12,12,'2023-02-09 10:46:32',290.175621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17915,12,12,'2023-02-09 10:46:32',290.186625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17916,12,12,'2023-02-09 10:46:32',290.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17917,12,12,'2023-02-09 10:46:32',290.624995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17918,12,12,'2023-02-09 10:46:32',291.197623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17919,12,12,'2023-02-09 10:46:32',291.209623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17920,12,12,'2023-02-09 10:46:32',291.625623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17921,12,12,'2023-02-09 10:46:32',291.644996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17922,12,12,'2023-02-09 10:46:32',292.214627,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17923,12,12,'2023-02-09 10:46:32',292.225620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17924,12,12,'2023-02-09 10:46:32',292.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17925,12,12,'2023-02-09 10:46:32',292.700995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17926,12,12,'2023-02-09 10:46:32',293.237624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17927,12,12,'2023-02-09 10:46:32',293.248618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17928,12,12,'2023-02-09 10:46:32',293.665624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17929,12,12,'2023-02-09 10:46:32',293.698998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17930,12,12,'2023-02-09 10:46:32',294.258621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17931,12,12,'2023-02-09 10:46:32',294.269624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17932,12,12,'2023-02-09 10:46:32',294.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17933,12,12,'2023-02-09 10:46:32',294.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17934,12,12,'2023-02-09 10:46:32',295.276620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17935,12,12,'2023-02-09 10:46:32',295.287623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17936,12,12,'2023-02-09 10:46:32',295.705625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17937,12,12,'2023-02-09 10:46:32',295.724998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17938,12,12,'2023-02-09 10:46:32',296.298622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17939,12,12,'2023-02-09 10:46:32',296.309625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17940,12,12,'2023-02-09 10:46:32',296.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17941,12,12,'2023-02-09 10:46:32',296.744998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17942,12,12,'2023-02-09 10:46:32',297.315625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17943,12,12,'2023-02-09 10:46:32',297.326618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17944,12,12,'2023-02-09 10:46:32',297.745616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17945,12,12,'2023-02-09 10:46:32',297.800997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17946,12,12,'2023-02-09 10:46:32',298.337617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17947,12,12,'2023-02-09 10:46:32',298.348621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17948,12,12,'2023-02-09 10:46:32',298.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17949,12,12,'2023-02-09 10:46:32',298.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17950,12,12,'2023-02-09 10:46:32',299.354620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17951,12,12,'2023-02-09 10:46:32',299.365624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17952,12,12,'2023-02-09 10:46:32',299.785617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17953,12,12,'2023-02-09 10:46:32',299.805996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17954,12,12,'2023-02-09 10:46:32',300.377618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17955,12,12,'2023-02-09 10:46:32',300.388622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17956,12,12,'2023-02-09 10:46:32',300.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17957,12,12,'2023-02-09 10:46:32',300.825000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17958,12,12,'2023-02-09 10:46:32',301.398624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17959,12,12,'2023-02-09 10:46:32',301.409618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17960,12,12,'2023-02-09 10:46:32',301.825618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17961,12,12,'2023-02-09 10:46:32',301.880999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17962,12,12,'2023-02-09 10:46:32',302.416623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17963,12,12,'2023-02-09 10:46:32',302.427617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17964,12,12,'2023-02-09 10:46:32',302.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17965,12,12,'2023-02-09 10:46:32',302.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17966,12,12,'2023-02-09 10:46:32',303.437619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17967,12,12,'2023-02-09 10:46:32',303.448623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17968,12,12,'2023-02-09 10:46:32',303.865619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17969,12,12,'2023-02-09 10:46:32',303.885002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17970,12,12,'2023-02-09 10:46:32',304.455618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17971,12,12,'2023-02-09 10:46:32',304.466622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17972,12,12,'2023-02-09 10:46:32',304.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17973,12,12,'2023-02-09 10:46:32',304.918993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17974,12,12,'2023-02-09 10:46:32',305.476625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17975,12,12,'2023-02-09 10:46:32',305.487618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17976,12,12,'2023-02-09 10:46:32',305.905620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17977,12,12,'2023-02-09 10:46:32',305.924993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17978,12,12,'2023-02-09 10:46:32',306.494623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17979,12,12,'2023-02-09 10:46:32',306.505617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17980,12,12,'2023-02-09 10:46:32',306.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17981,12,12,'2023-02-09 10:46:32',306.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17982,12,12,'2023-02-09 10:46:32',307.515620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17983,12,12,'2023-02-09 10:46:32',307.526624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17984,12,12,'2023-02-09 10:46:32',307.945621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17985,12,12,'2023-02-09 10:46:32',307.964994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17986,12,12,'2023-02-09 10:46:32',308.537622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17987,12,12,'2023-02-09 10:46:32',308.548626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17988,12,12,'2023-02-09 10:46:32',308.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17989,12,12,'2023-02-09 10:46:32',309.020993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17990,12,12,'2023-02-09 10:46:32',309.554625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17991,12,12,'2023-02-09 10:46:32',309.565619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17992,12,12,'2023-02-09 10:46:32',309.985622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17993,12,12,'2023-02-09 10:46:32',310.004995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17994,12,12,'2023-02-09 10:46:32',310.577623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17995,12,12,'2023-02-09 10:46:32',310.588617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17996,12,12,'2023-02-09 10:46:32',311.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17997,12,12,'2023-02-09 10:46:32',311.024995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17998,12,12,'2023-02-09 10:46:32',311.597623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17999,12,12,'2023-02-09 10:46:32',311.609623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18000,12,12,'2023-02-09 10:46:32',312.025623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18001,12,12,'2023-02-09 10:46:32',312.044996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18002,12,12,'2023-02-09 10:46:32',312.616618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18003,12,12,'2023-02-09 10:46:32',312.626626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18004,12,12,'2023-02-09 10:46:32',313.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18005,12,12,'2023-02-09 10:46:32',313.064996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18006,12,12,'2023-02-09 10:46:32',313.638620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18007,12,12,'2023-02-09 10:46:32',313.654623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18008,12,12,'2023-02-09 10:46:32',314.065624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18009,12,12,'2023-02-09 10:46:32',314.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18010,12,12,'2023-02-09 10:46:32',314.655623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18011,12,12,'2023-02-09 10:46:32',314.667623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18012,12,12,'2023-02-09 10:46:32',315.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18013,12,12,'2023-02-09 10:46:32',315.142002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18014,12,12,'2023-02-09 10:46:32',315.677625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18015,12,12,'2023-02-09 10:46:32',315.688619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18016,12,12,'2023-02-09 10:46:32',316.105625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18017,12,12,'2023-02-09 10:46:32',316.125993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18018,12,12,'2023-02-09 10:46:32',316.694618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18019,12,12,'2023-02-09 10:46:32',316.705622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18020,12,12,'2023-02-09 10:46:32',317.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18021,12,12,'2023-02-09 10:46:32',317.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18022,12,12,'2023-02-09 10:46:32',317.716621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18023,12,12,'2023-02-09 10:46:32',317.731617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18024,12,12,'2023-02-09 10:46:32',318.145626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18025,12,12,'2023-02-09 10:46:32',318.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18026,12,12,'2023-02-09 10:46:32',318.737617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18027,12,12,'2023-02-09 10:46:32',318.748621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18028,12,12,'2023-02-09 10:46:32',319.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18029,12,12,'2023-02-09 10:46:32',319.184999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18030,12,12,'2023-02-09 10:46:32',319.756622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18031,12,12,'2023-02-09 10:46:32',319.767625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18032,12,12,'2023-02-09 10:46:32',320.185617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18033,12,12,'2023-02-09 10:46:32',320.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18034,12,12,'2023-02-09 10:46:32',320.777618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18035,12,12,'2023-02-09 10:46:32',320.787626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18036,12,12,'2023-02-09 10:46:32',321.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18037,12,12,'2023-02-09 10:46:32',321.225000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18038,12,12,'2023-02-09 10:46:32',321.795617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18039,12,12,'2023-02-09 10:46:32',321.804619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18040,12,12,'2023-02-09 10:46:32',322.225618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18041,12,12,'2023-02-09 10:46:32',322.280999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18042,12,12,'2023-02-09 10:46:32',322.816623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18043,12,12,'2023-02-09 10:46:32',322.830624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18044,12,12,'2023-02-09 10:46:32',323.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18045,12,12,'2023-02-09 10:46:32',323.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18046,12,12,'2023-02-09 10:46:32',323.838625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18047,12,12,'2023-02-09 10:46:32',323.849619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18048,12,12,'2023-02-09 10:46:32',324.265619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18049,12,12,'2023-02-09 10:46:32',324.285002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18050,12,12,'2023-02-09 10:46:32',324.855618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18051,12,12,'2023-02-09 10:46:32',324.867618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18052,12,12,'2023-02-09 10:46:32',325.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18053,12,12,'2023-02-09 10:46:32',325.341001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18054,12,12,'2023-02-09 10:46:32',325.877620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18055,12,12,'2023-02-09 10:46:32',325.888624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18056,12,12,'2023-02-09 10:46:32',326.305620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18057,12,12,'2023-02-09 10:46:32',326.325003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18058,12,12,'2023-02-09 10:46:32',326.894623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18059,12,12,'2023-02-09 10:46:32',326.905617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18060,12,12,'2023-02-09 10:46:32',327.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18061,12,12,'2023-02-09 10:46:32',327.345999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18062,12,12,'2023-02-09 10:46:32',327.916626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18063,12,12,'2023-02-09 10:46:32',327.927619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18064,12,12,'2023-02-09 10:46:32',328.345621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18065,12,12,'2023-02-09 10:46:32',328.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18066,12,12,'2023-02-09 10:46:32',328.937622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18067,12,12,'2023-02-09 10:46:32',328.948626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18068,12,12,'2023-02-09 10:46:32',329.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18069,12,12,'2023-02-09 10:46:32',329.384994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18070,12,12,'2023-02-09 10:46:32',329.956617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18071,12,12,'2023-02-09 10:46:32',329.966625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18072,12,12,'2023-02-09 10:46:32',330.385622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18073,12,12,'2023-02-09 10:46:32',330.440993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18074,12,12,'2023-02-09 10:46:32',330.978619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18075,12,12,'2023-02-09 10:46:32',330.988617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18076,12,12,'2023-02-09 10:46:32',331.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18077,12,12,'2023-02-09 10:46:32',331.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18078,12,12,'2023-02-09 10:46:32',331.995622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18079,12,12,'2023-02-09 10:46:32',332.006626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18080,12,12,'2023-02-09 10:46:32',332.425623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18081,12,12,'2023-02-09 10:46:32',332.446002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18082,12,12,'2023-02-09 10:46:32',333.017624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18083,12,12,'2023-02-09 10:46:32',333.028618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18084,12,12,'2023-02-09 10:46:32',333.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18085,12,12,'2023-02-09 10:46:32',333.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18086,12,12,'2023-02-09 10:46:32',334.038620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18087,12,12,'2023-02-09 10:46:32',334.049624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18088,12,12,'2023-02-09 10:46:32',334.465624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18089,12,12,'2023-02-09 10:46:32',334.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18090,12,12,'2023-02-09 10:46:32',335.056619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18091,12,12,'2023-02-09 10:46:32',335.067623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18092,12,12,'2023-02-09 10:46:32',335.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18093,12,12,'2023-02-09 10:46:32',335.504997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18094,12,12,'2023-02-09 10:46:32',336.077625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18095,12,12,'2023-02-09 10:46:32',336.088619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18096,12,12,'2023-02-09 10:46:32',336.505625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18097,12,12,'2023-02-09 10:46:32',336.560996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18098,12,12,'2023-02-09 10:46:32',337.096620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18099,12,12,'2023-02-09 10:46:32',337.107624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18100,12,12,'2023-02-09 10:46:32',337.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18101,12,12,'2023-02-09 10:46:32',337.558999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18102,12,12,'2023-02-09 10:46:32',338.117616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18103,12,12,'2023-02-09 10:46:32',338.128620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18104,12,12,'2023-02-09 10:46:32',338.545616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18105,12,12,'2023-02-09 10:46:32',338.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18106,12,12,'2023-02-09 10:46:32',339.135625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18107,12,12,'2023-02-09 10:46:32',339.145623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18108,12,12,'2023-02-09 10:46:32',339.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18109,12,12,'2023-02-09 10:46:32',339.584999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18110,12,12,'2023-02-09 10:46:32',340.156622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18111,12,12,'2023-02-09 10:46:32',340.167625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18112,12,12,'2023-02-09 10:46:32',340.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18113,12,12,'2023-02-09 10:46:32',340.605000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18114,12,12,'2023-02-09 10:46:32',341.178624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18115,12,12,'2023-02-09 10:46:32',341.188622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18116,12,12,'2023-02-09 10:46:32',341.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18117,12,12,'2023-02-09 10:46:32',341.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18118,12,12,'2023-02-09 10:46:32',342.195617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18119,12,12,'2023-02-09 10:46:32',342.205625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18120,12,12,'2023-02-09 10:46:32',342.625618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18121,12,12,'2023-02-09 10:46:32',342.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18122,12,12,'2023-02-09 10:46:32',343.217619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18123,12,12,'2023-02-09 10:46:32',343.228623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18124,12,12,'2023-02-09 10:46:32',343.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18125,12,12,'2023-02-09 10:46:32',343.701000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18126,12,12,'2023-02-09 10:46:32',344.234622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18127,12,12,'2023-02-09 10:46:32',344.245626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18128,12,12,'2023-02-09 10:46:32',344.665619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18129,12,12,'2023-02-09 10:46:32',344.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18130,12,12,'2023-02-09 10:46:32',345.256624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18131,12,12,'2023-02-09 10:46:32',345.267618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18132,12,12,'2023-02-09 10:46:32',345.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18133,12,12,'2023-02-09 10:46:32',345.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18134,12,12,'2023-02-09 10:46:32',346.274623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18135,12,12,'2023-02-09 10:46:32',346.285617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18136,12,12,'2023-02-09 10:46:32',346.705620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18137,12,12,'2023-02-09 10:46:32',346.724993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18138,12,12,'2023-02-09 10:46:32',347.295619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18139,12,12,'2023-02-09 10:46:32',347.306623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18140,12,12,'2023-02-09 10:46:32',347.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18141,12,12,'2023-02-09 10:46:32',347.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18142,12,12,'2023-02-09 10:46:32',348.318617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18143,12,12,'2023-02-09 10:46:32',348.329621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18144,12,12,'2023-02-09 10:46:32',348.745621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18145,12,12,'2023-02-09 10:46:32',348.778995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18146,12,12,'2023-02-09 10:46:32',349.335620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18147,12,12,'2023-02-09 10:46:32',349.346624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18148,12,12,'2023-02-09 10:46:32',349.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18149,12,12,'2023-02-09 10:46:32',349.784994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18150,12,12,'2023-02-09 10:46:32',350.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18151,12,12,'2023-02-09 10:46:32',350.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18152,12,12,'2023-02-09 10:46:32',350.785622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18153,12,12,'2023-02-09 10:46:32',350.804995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18154,12,12,'2023-02-09 10:46:32',351.378619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18155,12,12,'2023-02-09 10:46:32',351.389622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18156,12,12,'2023-02-09 10:46:32',351.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18157,12,12,'2023-02-09 10:46:32',351.860994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18158,12,12,'2023-02-09 10:46:32',352.396618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18159,12,12,'2023-02-09 10:46:32',352.407621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18160,12,12,'2023-02-09 10:46:32',352.825623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18161,12,12,'2023-02-09 10:46:32',352.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18162,12,12,'2023-02-09 10:46:32',353.417624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18163,12,12,'2023-02-09 10:46:32',353.428618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18164,12,12,'2023-02-09 10:46:32',353.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18165,12,12,'2023-02-09 10:46:32',353.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18166,12,12,'2023-02-09 10:46:32',354.435623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18167,12,12,'2023-02-09 10:46:32',354.446616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18168,12,12,'2023-02-09 10:46:32',354.865624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18169,12,12,'2023-02-09 10:46:32',354.886003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18170,12,12,'2023-02-09 10:46:32',355.456619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18171,12,12,'2023-02-09 10:46:32',355.467623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18172,12,12,'2023-02-09 10:46:32',355.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18173,12,12,'2023-02-09 10:46:32',355.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18174,12,12,'2023-02-09 10:46:32',356.475624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18175,12,12,'2023-02-09 10:46:32',356.485622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18176,12,12,'2023-02-09 10:46:32',356.905625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18177,12,12,'2023-02-09 10:46:32',356.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18178,12,12,'2023-02-09 10:46:32',357.495624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18179,12,12,'2023-02-09 10:46:32',357.506618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18180,12,12,'2023-02-09 10:46:32',357.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18181,12,12,'2023-02-09 10:46:32',357.980997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18182,12,12,'2023-02-09 10:46:32',358.518622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18183,12,12,'2023-02-09 10:46:32',358.529626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18184,12,12,'2023-02-09 10:46:32',358.945626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18185,12,12,'2023-02-09 10:46:32',358.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18186,12,12,'2023-02-09 10:46:32',359.535625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18187,12,12,'2023-02-09 10:46:32',359.546619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18188,12,12,'2023-02-09 10:46:32',359.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18189,12,12,'2023-02-09 10:46:32',359.985995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18190,12,12,'2023-02-09 10:46:32',360.557617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18191,12,12,'2023-02-09 10:46:32',360.568621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18192,12,12,'2023-02-09 10:46:32',360.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18193,12,12,'2023-02-09 10:46:32',361.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18194,12,12,'2023-02-09 10:46:32',361.578624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18195,12,12,'2023-02-09 10:46:32',361.589617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18196,12,12,'2023-02-09 10:46:32',362.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18197,12,12,'2023-02-09 10:46:32',362.025000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18198,12,12,'2023-02-09 10:46:32',362.596623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18199,12,12,'2023-02-09 10:46:32',362.607626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18200,12,12,'2023-02-09 10:46:32',363.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18201,12,12,'2023-02-09 10:46:32',363.080999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18202,12,12,'2023-02-09 10:46:32',363.614621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18203,12,12,'2023-02-09 10:46:32',363.625625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18204,12,12,'2023-02-09 10:46:32',364.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18205,12,12,'2023-02-09 10:46:32',364.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18206,12,12,'2023-02-09 10:46:32',364.635618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18207,12,12,'2023-02-09 10:46:32',364.646621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18208,12,12,'2023-02-09 10:46:32',365.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18209,12,12,'2023-02-09 10:46:32',365.099003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18210,12,12,'2023-02-09 10:46:32',365.658626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18211,12,12,'2023-02-09 10:46:32',365.668624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18212,12,12,'2023-02-09 10:46:32',366.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18213,12,12,'2023-02-09 10:46:32',366.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18214,12,12,'2023-02-09 10:46:32',366.674623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18215,12,12,'2023-02-09 10:46:32',366.685617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18216,12,12,'2023-02-09 10:46:32',367.105620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18217,12,12,'2023-02-09 10:46:32',367.125003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18218,12,12,'2023-02-09 10:46:32',367.697621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18219,12,12,'2023-02-09 10:46:32',367.708625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18220,12,12,'2023-02-09 10:46:32',368.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18221,12,12,'2023-02-09 10:46:32',368.144993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18222,12,12,'2023-02-09 10:46:32',368.718617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18223,12,12,'2023-02-09 10:46:32',368.729621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18224,12,12,'2023-02-09 10:46:32',369.145621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18225,12,12,'2023-02-09 10:46:32',369.164994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18226,12,12,'2023-02-09 10:46:32',369.736626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18227,12,12,'2023-02-09 10:46:32',369.748626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18228,12,12,'2023-02-09 10:46:32',370.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18229,12,12,'2023-02-09 10:46:32',370.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18230,12,12,'2023-02-09 10:46:32',370.757622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18231,12,12,'2023-02-09 10:46:32',370.767620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18232,12,12,'2023-02-09 10:46:32',371.185622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18233,12,12,'2023-02-09 10:46:32',371.240993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18234,12,12,'2023-02-09 10:46:32',371.775621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18235,12,12,'2023-02-09 10:46:32',371.786625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18236,12,12,'2023-02-09 10:46:32',372.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18237,12,12,'2023-02-09 10:46:32',372.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18238,12,12,'2023-02-09 10:46:32',372.796618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18239,12,12,'2023-02-09 10:46:32',372.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18240,12,12,'2023-02-09 10:46:32',373.225623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18241,12,12,'2023-02-09 10:46:32',373.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18242,12,12,'2023-02-09 10:46:32',373.814626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18243,12,12,'2023-02-09 10:46:32',373.825620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18244,12,12,'2023-02-09 10:46:32',374.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18245,12,12,'2023-02-09 10:46:32',374.264996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18246,12,12,'2023-02-09 10:46:32',374.836619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18247,12,12,'2023-02-09 10:46:32',374.846627,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18248,12,12,'2023-02-09 10:46:32',375.265624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18249,12,12,'2023-02-09 10:46:32',375.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18250,12,12,'2023-02-09 10:46:32',375.858621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18251,12,12,'2023-02-09 10:46:32',375.869624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18252,12,12,'2023-02-09 10:46:32',376.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18253,12,12,'2023-02-09 10:46:32',376.340996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18254,12,12,'2023-02-09 10:46:32',376.875624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18255,12,12,'2023-02-09 10:46:32',376.885622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18256,12,12,'2023-02-09 10:46:32',377.305625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18257,12,12,'2023-02-09 10:46:32',377.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18258,12,12,'2023-02-09 10:46:32',377.897626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18259,12,12,'2023-02-09 10:46:32',377.909625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18260,12,12,'2023-02-09 10:46:32',378.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18261,12,12,'2023-02-09 10:46:32',378.344998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18262,12,12,'2023-02-09 10:46:32',378.918622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18263,12,12,'2023-02-09 10:46:32',378.930622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18264,12,12,'2023-02-09 10:46:32',379.345616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18265,12,12,'2023-02-09 10:46:32',379.364999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18266,12,12,'2023-02-09 10:46:32',379.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18267,12,12,'2023-02-09 10:46:32',379.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18268,12,12,'2023-02-09 10:46:32',380.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18269,12,12,'2023-02-09 10:46:32',380.420998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18270,12,12,'2023-02-09 10:46:32',380.958623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18271,12,12,'2023-02-09 10:46:32',380.970623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18272,12,12,'2023-02-09 10:46:32',381.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18273,12,12,'2023-02-09 10:46:32',381.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18274,12,12,'2023-02-09 10:46:32',381.975616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18275,12,12,'2023-02-09 10:46:32',381.986620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18276,12,12,'2023-02-09 10:46:32',382.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18277,12,12,'2023-02-09 10:46:32',382.425996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18278,12,12,'2023-02-09 10:46:32',382.997618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18279,12,12,'2023-02-09 10:46:32',383.008622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18280,12,12,'2023-02-09 10:46:32',383.425618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18281,12,12,'2023-02-09 10:46:32',383.445001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18282,12,12,'2023-02-09 10:46:32',384.014621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18283,12,12,'2023-02-09 10:46:32',384.025625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18284,12,12,'2023-02-09 10:46:32',384.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18285,12,12,'2023-02-09 10:46:32',384.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18286,12,12,'2023-02-09 10:46:32',385.036624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18287,12,12,'2023-02-09 10:46:32',385.049619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18288,12,12,'2023-02-09 10:46:32',385.465619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18289,12,12,'2023-02-09 10:46:32',385.485002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18290,12,12,'2023-02-09 10:46:32',386.058626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18291,12,12,'2023-02-09 10:46:32',386.069619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18292,12,12,'2023-02-09 10:46:32',386.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18293,12,12,'2023-02-09 10:46:32',386.541997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18294,12,12,'2023-02-09 10:46:32',387.076625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18295,12,12,'2023-02-09 10:46:32',387.087618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18296,12,12,'2023-02-09 10:46:32',387.505620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18297,12,12,'2023-02-09 10:46:32',387.525998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18298,12,12,'2023-02-09 10:46:32',388.097621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18299,12,12,'2023-02-09 10:46:32',388.108625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18300,12,12,'2023-02-09 10:46:32',388.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18301,12,12,'2023-02-09 10:46:32',388.544993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18302,12,12,'2023-02-09 10:46:32',389.115620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18303,12,12,'2023-02-09 10:46:32',389.126623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18304,12,12,'2023-02-09 10:46:32',389.545621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18305,12,12,'2023-02-09 10:46:32',389.564994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18306,12,12,'2023-02-09 10:46:32',390.136626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18307,12,12,'2023-02-09 10:46:32',390.147620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18308,12,12,'2023-02-09 10:46:32',390.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18309,12,12,'2023-02-09 10:46:32',390.584994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18310,12,12,'2023-02-09 10:46:32',391.154625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18311,12,12,'2023-02-09 10:46:32',391.165619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18312,12,12,'2023-02-09 10:46:32',391.585622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18313,12,12,'2023-02-09 10:46:32',391.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18314,12,12,'2023-02-09 10:46:32',392.175621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18315,12,12,'2023-02-09 10:46:32',392.186625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18316,12,12,'2023-02-09 10:46:32',392.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18317,12,12,'2023-02-09 10:46:32',392.662000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18318,12,12,'2023-02-09 10:46:32',393.197623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18319,12,12,'2023-02-09 10:46:32',393.209623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18320,12,12,'2023-02-09 10:46:32',393.625623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18321,12,12,'2023-02-09 10:46:32',393.644996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18322,12,12,'2023-02-09 10:46:32',394.214616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18323,12,12,'2023-02-09 10:46:32',394.225620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18324,12,12,'2023-02-09 10:46:32',394.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18325,12,12,'2023-02-09 10:46:32',394.664996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18326,12,12,'2023-02-09 10:46:32',395.237624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18327,12,12,'2023-02-09 10:46:32',395.247622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18328,12,12,'2023-02-09 10:46:32',395.665624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18329,12,12,'2023-02-09 10:46:32',395.684997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18330,12,12,'2023-02-09 10:46:32',396.258621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18331,12,12,'2023-02-09 10:46:32',396.268619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18332,12,12,'2023-02-09 10:46:32',396.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18333,12,12,'2023-02-09 10:46:32',396.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18334,12,12,'2023-02-09 10:46:32',397.276620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18335,12,12,'2023-02-09 10:46:32',397.287623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18336,12,12,'2023-02-09 10:46:32',397.705625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18337,12,12,'2023-02-09 10:46:32',397.762002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18338,12,12,'2023-02-09 10:46:32',398.294618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18339,12,12,'2023-02-09 10:46:32',398.305622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18340,12,12,'2023-02-09 10:46:32',398.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18341,12,12,'2023-02-09 10:46:32',398.745994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18342,12,12,'2023-02-09 10:46:32',399.315625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18343,12,12,'2023-02-09 10:46:32',399.326618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18344,12,12,'2023-02-09 10:46:32',399.745626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18345,12,12,'2023-02-09 10:46:32',399.764999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18346,12,12,'2023-02-09 10:46:32',400.337617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18347,12,12,'2023-02-09 10:46:32',400.348621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18348,12,12,'2023-02-09 10:46:32',400.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18349,12,12,'2023-02-09 10:46:32',400.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18350,12,12,'2023-02-09 10:46:32',401.354620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18351,12,12,'2023-02-09 10:46:32',401.365624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18352,12,12,'2023-02-09 10:46:32',401.785617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18353,12,12,'2023-02-09 10:46:32',401.840998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18354,12,12,'2023-02-09 10:46:32',402.376622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18355,12,12,'2023-02-09 10:46:32',402.387626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18356,12,12,'2023-02-09 10:46:32',402.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18357,12,12,'2023-02-09 10:46:32',402.825000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18358,12,12,'2023-02-09 10:46:32',403.398624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18359,12,12,'2023-02-09 10:46:32',403.408622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18360,12,12,'2023-02-09 10:46:32',403.825618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18361,12,12,'2023-02-09 10:46:32',403.859002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18362,12,12,'2023-02-09 10:46:32',404.416623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18363,12,12,'2023-02-09 10:46:32',404.427617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18364,12,12,'2023-02-09 10:46:32',404.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18365,12,12,'2023-02-09 10:46:32',404.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18366,12,12,'2023-02-09 10:46:32',405.437619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18367,12,12,'2023-02-09 10:46:32',405.448623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18368,12,12,'2023-02-09 10:46:32',405.865619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18369,12,12,'2023-02-09 10:46:32',405.885002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18370,12,12,'2023-02-09 10:46:32',406.455618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18371,12,12,'2023-02-09 10:46:32',406.466622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18372,12,12,'2023-02-09 10:46:32',406.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18373,12,12,'2023-02-09 10:46:32',406.941001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18374,12,12,'2023-02-09 10:46:32',407.476625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18375,12,12,'2023-02-09 10:46:32',407.487618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18376,12,12,'2023-02-09 10:46:32',407.905620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18377,12,12,'2023-02-09 10:46:32',407.925003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18378,12,12,'2023-02-09 10:46:32',408.494623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18379,12,12,'2023-02-09 10:46:32',408.505617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18380,12,12,'2023-02-09 10:46:32',408.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18381,12,12,'2023-02-09 10:46:32',408.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18382,12,12,'2023-02-09 10:46:32',409.515620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18383,12,12,'2023-02-09 10:46:32',409.526623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18384,12,12,'2023-02-09 10:46:32',409.945621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18385,12,12,'2023-02-09 10:46:32',409.965999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18386,12,12,'2023-02-09 10:46:32',410.538618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18387,12,12,'2023-02-09 10:46:32',410.549621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18388,12,12,'2023-02-09 10:46:32',410.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18389,12,12,'2023-02-09 10:46:32',410.984994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18390,12,12,'2023-02-09 10:46:32',411.555621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18391,12,12,'2023-02-09 10:46:32',411.566624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18392,12,12,'2023-02-09 10:46:32',411.985622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18393,12,12,'2023-02-09 10:46:32',412.040993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18394,12,12,'2023-02-09 10:46:32',412.577623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18395,12,12,'2023-02-09 10:46:32',412.588617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18396,12,12,'2023-02-09 10:46:32',413.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18397,12,12,'2023-02-09 10:46:32',413.024995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18398,12,12,'2023-02-09 10:46:32',413.598619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18399,12,12,'2023-02-09 10:46:32',413.609623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18400,12,12,'2023-02-09 10:46:32',414.025623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18401,12,12,'2023-02-09 10:46:32',414.044996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18402,12,12,'2023-02-09 10:46:32',414.616618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18403,12,12,'2023-02-09 10:46:32',414.627622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18404,12,12,'2023-02-09 10:46:32',415.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18405,12,12,'2023-02-09 10:46:32',415.078997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18406,12,12,'2023-02-09 10:46:32',415.634617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18407,12,12,'2023-02-09 10:46:32',415.645621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18408,12,12,'2023-02-09 10:46:32',416.065624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18409,12,12,'2023-02-09 10:46:32',416.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18410,12,12,'2023-02-09 10:46:32',416.655623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18411,12,12,'2023-02-09 10:46:32',416.666617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18412,12,12,'2023-02-09 10:46:32',417.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18413,12,12,'2023-02-09 10:46:32',417.140996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18414,12,12,'2023-02-09 10:46:32',417.677625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18415,12,12,'2023-02-09 10:46:32',417.688619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18416,12,12,'2023-02-09 10:46:32',418.105625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18417,12,12,'2023-02-09 10:46:32',418.124998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18418,12,12,'2023-02-09 10:46:32',418.694618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18419,12,12,'2023-02-09 10:46:32',418.705622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18420,12,12,'2023-02-09 10:46:32',419.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18421,12,12,'2023-02-09 10:46:32',419.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18422,12,12,'2023-02-09 10:46:32',419.716621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18423,12,12,'2023-02-09 10:46:32',419.727624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18424,12,12,'2023-02-09 10:46:32',420.145616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18425,12,12,'2023-02-09 10:46:32',420.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18426,12,12,'2023-02-09 10:46:32',420.738623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18427,12,12,'2023-02-09 10:46:32',420.748621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18428,12,12,'2023-02-09 10:46:32',421.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18429,12,12,'2023-02-09 10:46:32',421.184999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18430,12,12,'2023-02-09 10:46:32',421.756622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18431,12,12,'2023-02-09 10:46:32',421.767625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18432,12,12,'2023-02-09 10:46:32',422.185617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18433,12,12,'2023-02-09 10:46:32',422.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18434,12,12,'2023-02-09 10:46:32',422.777618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18435,12,12,'2023-02-09 10:46:32',422.788622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18436,12,12,'2023-02-09 10:46:32',423.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18437,12,12,'2023-02-09 10:46:32',423.225000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18438,12,12,'2023-02-09 10:46:32',423.795617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18439,12,12,'2023-02-09 10:46:32',423.806620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18440,12,12,'2023-02-09 10:46:32',424.225618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18441,12,12,'2023-02-09 10:46:32',424.245001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18442,12,12,'2023-02-09 10:46:32',424.816623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18443,12,12,'2023-02-09 10:46:32',424.827617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18444,12,12,'2023-02-09 10:46:32',425.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18445,12,12,'2023-02-09 10:46:32',425.301996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18446,12,12,'2023-02-09 10:46:32',425.838625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18447,12,12,'2023-02-09 10:46:32',425.849619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18448,12,12,'2023-02-09 10:46:32',426.265619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18449,12,12,'2023-02-09 10:46:32',426.285997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18450,12,12,'2023-02-09 10:46:32',426.855618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18451,12,12,'2023-02-09 10:46:32',426.866622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18452,12,12,'2023-02-09 10:46:32',427.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18453,12,12,'2023-02-09 10:46:32',427.305002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18454,12,12,'2023-02-09 10:46:32',427.877620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18455,12,12,'2023-02-09 10:46:32',427.888624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18456,12,12,'2023-02-09 10:46:32',428.305620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18457,12,12,'2023-02-09 10:46:32',428.324993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18458,12,12,'2023-02-09 10:46:32',428.894623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18459,12,12,'2023-02-09 10:46:32',428.905617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18460,12,12,'2023-02-09 10:46:32',429.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18461,12,12,'2023-02-09 10:46:32',429.344993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18462,12,12,'2023-02-09 10:46:32',429.917621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18463,12,12,'2023-02-09 10:46:32',429.927619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18464,12,12,'2023-02-09 10:46:32',430.345621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18465,12,12,'2023-02-09 10:46:32',430.401002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18466,12,12,'2023-02-09 10:46:32',430.938618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18467,12,12,'2023-02-09 10:46:32',430.948626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18468,12,12,'2023-02-09 10:46:32',431.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18469,12,12,'2023-02-09 10:46:32',431.398995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18470,12,12,'2023-02-09 10:46:32',431.956616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18471,12,12,'2023-02-09 10:46:32',431.967620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18472,12,12,'2023-02-09 10:46:32',432.385622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18473,12,12,'2023-02-09 10:46:32',432.404995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18474,12,12,'2023-02-09 10:46:32',432.978619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18475,12,12,'2023-02-09 10:46:32',432.989622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18476,12,12,'2023-02-09 10:46:32',433.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18477,12,12,'2023-02-09 10:46:32',433.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18478,12,12,'2023-02-09 10:46:32',433.995622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18479,12,12,'2023-02-09 10:46:32',434.006625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18480,12,12,'2023-02-09 10:46:32',434.425623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18481,12,12,'2023-02-09 10:46:32',434.444996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18482,12,12,'2023-02-09 10:46:32',435.017624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18483,12,12,'2023-02-09 10:46:32',435.028618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18484,12,12,'2023-02-09 10:46:32',435.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18485,12,12,'2023-02-09 10:46:32',435.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18486,12,12,'2023-02-09 10:46:32',436.034617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18487,12,12,'2023-02-09 10:46:32',436.045621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18488,12,12,'2023-02-09 10:46:32',436.465624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18489,12,12,'2023-02-09 10:46:32',436.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18490,12,12,'2023-02-09 10:46:32',437.057625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18491,12,12,'2023-02-09 10:46:32',437.067623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18492,12,12,'2023-02-09 10:46:32',437.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18493,12,12,'2023-02-09 10:46:32',437.540996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18494,12,12,'2023-02-09 10:46:32',438.077625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18495,12,12,'2023-02-09 10:46:32',438.088619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18496,12,12,'2023-02-09 10:46:32',438.505625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18497,12,12,'2023-02-09 10:46:32',438.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18498,12,12,'2023-02-09 10:46:32',439.096620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18499,12,12,'2023-02-09 10:46:32',439.106618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18500,12,12,'2023-02-09 10:46:32',439.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18501,12,12,'2023-02-09 10:46:32',439.544998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18502,12,12,'2023-02-09 10:46:32',440.117626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18503,12,12,'2023-02-09 10:46:32',440.128620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18504,12,12,'2023-02-09 10:46:32',440.545626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18505,12,12,'2023-02-09 10:46:32',440.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18506,12,12,'2023-02-09 10:46:32',441.135625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18507,12,12,'2023-02-09 10:46:32',441.146619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18508,12,12,'2023-02-09 10:46:32',441.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18509,12,12,'2023-02-09 10:46:32',441.584999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18510,12,12,'2023-02-09 10:46:32',442.156621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18511,12,12,'2023-02-09 10:46:32',442.167625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18512,12,12,'2023-02-09 10:46:32',442.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18513,12,12,'2023-02-09 10:46:32',442.640998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18514,12,12,'2023-02-09 10:46:32',443.178624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18515,12,12,'2023-02-09 10:46:32',443.189617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18516,12,12,'2023-02-09 10:46:32',443.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18517,12,12,'2023-02-09 10:46:32',443.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18518,12,12,'2023-02-09 10:46:32',444.195617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18519,12,12,'2023-02-09 10:46:32',444.206620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18520,12,12,'2023-02-09 10:46:32',444.625618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18521,12,12,'2023-02-09 10:46:32',444.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18522,12,12,'2023-02-09 10:46:32',445.217619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18523,12,12,'2023-02-09 10:46:32',445.228623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18524,12,12,'2023-02-09 10:46:32',445.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18525,12,12,'2023-02-09 10:46:32',445.665001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18526,12,12,'2023-02-09 10:46:32',446.234622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18527,12,12,'2023-02-09 10:46:32',446.245626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18528,12,12,'2023-02-09 10:46:32',446.665619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18529,12,12,'2023-02-09 10:46:32',446.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18530,12,12,'2023-02-09 10:46:32',447.256624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18531,12,12,'2023-02-09 10:46:32',447.267618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18532,12,12,'2023-02-09 10:46:32',447.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18533,12,12,'2023-02-09 10:46:32',447.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18534,12,12,'2023-02-09 10:46:32',448.278626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18535,12,12,'2023-02-09 10:46:32',448.288624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18536,12,12,'2023-02-09 10:46:32',448.705620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18537,12,12,'2023-02-09 10:46:32',448.725003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18538,12,12,'2023-02-09 10:46:32',449.296625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18539,12,12,'2023-02-09 10:46:32',449.306623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18540,12,12,'2023-02-09 10:46:32',449.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18541,12,12,'2023-02-09 10:46:32',449.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18542,12,12,'2023-02-09 10:46:32',450.318617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18543,12,12,'2023-02-09 10:46:32',450.328625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18544,12,12,'2023-02-09 10:46:32',450.745621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18545,12,12,'2023-02-09 10:46:32',450.801002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18546,12,12,'2023-02-09 10:46:32',451.335620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18547,12,12,'2023-02-09 10:46:32',451.346624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18548,12,12,'2023-02-09 10:46:32',451.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18549,12,12,'2023-02-09 10:46:32',451.784994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18550,12,12,'2023-02-09 10:46:32',452.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18551,12,12,'2023-02-09 10:46:32',452.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18552,12,12,'2023-02-09 10:46:32',452.785622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18553,12,12,'2023-02-09 10:46:32',452.804995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18554,12,12,'2023-02-09 10:46:32',453.374625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18555,12,12,'2023-02-09 10:46:32',453.385619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18556,12,12,'2023-02-09 10:46:32',453.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18557,12,12,'2023-02-09 10:46:32',453.826001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18558,12,12,'2023-02-09 10:46:32',454.396617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18559,12,12,'2023-02-09 10:46:32',454.407621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18560,12,12,'2023-02-09 10:46:32',454.825623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18561,12,12,'2023-02-09 10:46:32',454.880994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18562,12,12,'2023-02-09 10:46:32',455.417624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18563,12,12,'2023-02-09 10:46:32',455.428618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18564,12,12,'2023-02-09 10:46:32',455.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18565,12,12,'2023-02-09 10:46:32',455.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18566,12,12,'2023-02-09 10:46:32',456.435623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18567,12,12,'2023-02-09 10:46:32',456.447622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18568,12,12,'2023-02-09 10:46:32',456.865624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18569,12,12,'2023-02-09 10:46:32',456.884997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18570,12,12,'2023-02-09 10:46:32',457.457625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18571,12,12,'2023-02-09 10:46:32',457.467623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18572,12,12,'2023-02-09 10:46:32',457.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18573,12,12,'2023-02-09 10:46:32',457.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18574,12,12,'2023-02-09 10:46:32',458.475624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18575,12,12,'2023-02-09 10:46:32',458.486617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18576,12,12,'2023-02-09 10:46:32',458.905625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18577,12,12,'2023-02-09 10:46:32',458.938999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18578,12,12,'2023-02-09 10:46:32',459.496620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18579,12,12,'2023-02-09 10:46:32',459.507624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18580,12,12,'2023-02-09 10:46:32',459.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18581,12,12,'2023-02-09 10:46:32',459.944998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18582,12,12,'2023-02-09 10:46:32',460.518622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18583,12,12,'2023-02-09 10:46:32',460.529626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18584,12,12,'2023-02-09 10:46:32',460.945616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18585,12,12,'2023-02-09 10:46:32',460.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18586,12,12,'2023-02-09 10:46:32',461.535625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18587,12,12,'2023-02-09 10:46:32',461.544617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18588,12,12,'2023-02-09 10:46:32',461.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18589,12,12,'2023-02-09 10:46:32',462.020998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18590,12,12,'2023-02-09 10:46:32',462.557617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18591,12,12,'2023-02-09 10:46:32',462.570623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18592,12,12,'2023-02-09 10:46:32',462.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18593,12,12,'2023-02-09 10:46:32',463.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18594,12,12,'2023-02-09 10:46:32',463.574620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18595,12,12,'2023-02-09 10:46:32',463.585624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18596,12,12,'2023-02-09 10:46:32',464.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18597,12,12,'2023-02-09 10:46:32',464.025000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18598,12,12,'2023-02-09 10:46:32',464.596622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18599,12,12,'2023-02-09 10:46:32',464.607616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18600,12,12,'2023-02-09 10:46:32',465.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18601,12,12,'2023-02-09 10:46:32',465.045996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18602,12,12,'2023-02-09 10:46:32',465.617619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18603,12,12,'2023-02-09 10:46:32',465.628623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18604,12,12,'2023-02-09 10:46:32',466.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18605,12,12,'2023-02-09 10:46:32',466.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18606,12,12,'2023-02-09 10:46:32',466.636624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18607,12,12,'2023-02-09 10:46:32',466.647617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18608,12,12,'2023-02-09 10:46:32',467.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18609,12,12,'2023-02-09 10:46:32',467.121000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18610,12,12,'2023-02-09 10:46:32',467.658626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18611,12,12,'2023-02-09 10:46:32',467.669619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18612,12,12,'2023-02-09 10:46:32',468.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18613,12,12,'2023-02-09 10:46:32',468.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18614,12,12,'2023-02-09 10:46:32',468.675619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18615,12,12,'2023-02-09 10:46:32',468.685617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18616,12,12,'2023-02-09 10:46:32',469.105620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18617,12,12,'2023-02-09 10:46:32',469.124993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18618,12,12,'2023-02-09 10:46:32',469.697621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18619,12,12,'2023-02-09 10:46:32',469.708625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18620,12,12,'2023-02-09 10:46:32',470.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18621,12,12,'2023-02-09 10:46:32',470.158994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18622,12,12,'2023-02-09 10:46:32',470.714624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18623,12,12,'2023-02-09 10:46:32',470.725618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18624,12,12,'2023-02-09 10:46:32',471.145621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18625,12,12,'2023-02-09 10:46:32',471.164994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18626,12,12,'2023-02-09 10:46:32',471.736626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18627,12,12,'2023-02-09 10:46:32',471.747620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18628,12,12,'2023-02-09 10:46:32',472.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18629,12,12,'2023-02-09 10:46:32',472.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18630,12,12,'2023-02-09 10:46:32',472.757622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18631,12,12,'2023-02-09 10:46:32',472.768626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18632,12,12,'2023-02-09 10:46:32',473.185622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18633,12,12,'2023-02-09 10:46:32',473.204995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18634,12,12,'2023-02-09 10:46:32',473.775621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18635,12,12,'2023-02-09 10:46:32',473.786625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18636,12,12,'2023-02-09 10:46:32',474.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18637,12,12,'2023-02-09 10:46:32',474.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18638,12,12,'2023-02-09 10:46:32',474.796617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18639,12,12,'2023-02-09 10:46:32',474.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18640,12,12,'2023-02-09 10:46:32',475.225623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18641,12,12,'2023-02-09 10:46:32',475.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18642,12,12,'2023-02-09 10:46:32',475.815622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18643,12,12,'2023-02-09 10:46:32',475.825620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18644,12,12,'2023-02-09 10:46:32',476.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18645,12,12,'2023-02-09 10:46:32',476.264996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18646,12,12,'2023-02-09 10:46:32',476.836618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18647,12,12,'2023-02-09 10:46:32',476.846616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18648,12,12,'2023-02-09 10:46:32',477.265624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18649,12,12,'2023-02-09 10:46:32',477.320995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18650,12,12,'2023-02-09 10:46:32',477.858621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18651,12,12,'2023-02-09 10:46:32',477.869624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18652,12,12,'2023-02-09 10:46:32',478.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18653,12,12,'2023-02-09 10:46:32',478.304997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18654,12,12,'2023-02-09 10:46:32',478.875624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18655,12,12,'2023-02-09 10:46:32',478.886617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18656,12,12,'2023-02-09 10:46:32',479.305625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18657,12,12,'2023-02-09 10:46:32',479.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18658,12,12,'2023-02-09 10:46:32',479.897626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18659,12,12,'2023-02-09 10:46:32',479.908620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18660,12,12,'2023-02-09 10:46:32',480.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18661,12,12,'2023-02-09 10:46:32',480.344998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18662,12,12,'2023-02-09 10:46:32',480.914619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18663,12,12,'2023-02-09 10:46:32',480.925623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18664,12,12,'2023-02-09 10:46:32',481.345626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18665,12,12,'2023-02-09 10:46:32',481.365994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18666,12,12,'2023-02-09 10:46:32',481.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18667,12,12,'2023-02-09 10:46:32',481.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18668,12,12,'2023-02-09 10:46:32',482.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18669,12,12,'2023-02-09 10:46:32',482.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18670,12,12,'2023-02-09 10:46:32',482.957617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18671,12,12,'2023-02-09 10:46:32',482.968621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18672,12,12,'2023-02-09 10:46:32',483.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18673,12,12,'2023-02-09 10:46:32',483.440998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18674,12,12,'2023-02-09 10:46:32',483.976622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18675,12,12,'2023-02-09 10:46:32',483.986620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18676,12,12,'2023-02-09 10:46:32',484.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18677,12,12,'2023-02-09 10:46:32',484.425000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18678,12,12,'2023-02-09 10:46:32',484.998624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18679,12,12,'2023-02-09 10:46:32',485.009618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18680,12,12,'2023-02-09 10:46:32',485.425618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18681,12,12,'2023-02-09 10:46:32',485.445001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18682,12,12,'2023-02-09 10:46:32',486.015617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18683,12,12,'2023-02-09 10:46:32',486.026621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18684,12,12,'2023-02-09 10:46:32',486.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18685,12,12,'2023-02-09 10:46:32',486.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18686,12,12,'2023-02-09 10:46:32',487.037619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18687,12,12,'2023-02-09 10:46:32',487.049619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18688,12,12,'2023-02-09 10:46:32',487.465619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18689,12,12,'2023-02-09 10:46:32',487.485002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18690,12,12,'2023-02-09 10:46:32',488.058626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18691,12,12,'2023-02-09 10:46:32',488.068624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18692,12,12,'2023-02-09 10:46:32',488.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18693,12,12,'2023-02-09 10:46:32',488.505002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18694,12,12,'2023-02-09 10:46:32',489.076624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18695,12,12,'2023-02-09 10:46:32',489.087618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18696,12,12,'2023-02-09 10:46:32',489.505620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18697,12,12,'2023-02-09 10:46:32',489.561001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18698,12,12,'2023-02-09 10:46:32',490.097621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18699,12,12,'2023-02-09 10:46:32',490.108625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18700,12,12,'2023-02-09 10:46:32',490.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18701,12,12,'2023-02-09 10:46:32',490.544993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18702,12,12,'2023-02-09 10:46:32',491.115620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18703,12,12,'2023-02-09 10:46:32',491.126623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18704,12,12,'2023-02-09 10:46:32',491.545621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18705,12,12,'2023-02-09 10:46:32',491.564994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18706,12,12,'2023-02-09 10:46:32',492.136626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18707,12,12,'2023-02-09 10:46:32',492.147620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18708,12,12,'2023-02-09 10:46:32',492.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18709,12,12,'2023-02-09 10:46:32',492.586000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18710,12,12,'2023-02-09 10:46:32',493.155621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18711,12,12,'2023-02-09 10:46:32',493.166624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18712,12,12,'2023-02-09 10:46:32',493.585622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18713,12,12,'2023-02-09 10:46:32',493.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18714,12,12,'2023-02-09 10:46:32',494.176617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18715,12,12,'2023-02-09 10:46:32',494.186625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18716,12,12,'2023-02-09 10:46:32',494.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18717,12,12,'2023-02-09 10:46:32',494.624995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18718,12,12,'2023-02-09 10:46:32',495.198619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18719,12,12,'2023-02-09 10:46:32',495.209623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18720,12,12,'2023-02-09 10:46:32',495.625623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18721,12,12,'2023-02-09 10:46:32',495.680994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18722,12,12,'2023-02-09 10:46:32',496.215622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18723,12,12,'2023-02-09 10:46:32',496.226626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18724,12,12,'2023-02-09 10:46:32',496.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18725,12,12,'2023-02-09 10:46:32',496.664996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18726,12,12,'2023-02-09 10:46:32',497.237624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18727,12,12,'2023-02-09 10:46:32',497.248618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18728,12,12,'2023-02-09 10:46:32',497.665624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18729,12,12,'2023-02-09 10:46:32',497.684997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18730,12,12,'2023-02-09 10:46:32',498.258621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18731,12,12,'2023-02-09 10:46:32',498.269624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18732,12,12,'2023-02-09 10:46:32',498.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18733,12,12,'2023-02-09 10:46:32',498.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18734,12,12,'2023-02-09 10:46:32',499.276619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18735,12,12,'2023-02-09 10:46:32',499.287623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18736,12,12,'2023-02-09 10:46:32',499.705625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18737,12,12,'2023-02-09 10:46:32',499.724998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18738,12,12,'2023-02-09 10:46:32',500.294618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18739,12,12,'2023-02-09 10:46:32',500.307624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18740,12,12,'2023-02-09 10:46:32',500.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18741,12,12,'2023-02-09 10:46:32',500.780997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18742,12,12,'2023-02-09 10:46:32',501.315625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18743,12,12,'2023-02-09 10:46:32',501.326618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18744,12,12,'2023-02-09 10:46:32',501.745616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18745,12,12,'2023-02-09 10:46:32',501.764999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18746,12,12,'2023-02-09 10:46:32',502.338623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18747,12,12,'2023-02-09 10:46:32',502.349616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18748,12,12,'2023-02-09 10:46:32',502.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18749,12,12,'2023-02-09 10:46:32',502.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18750,12,12,'2023-02-09 10:46:32',503.355626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18751,12,12,'2023-02-09 10:46:32',503.366619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18752,12,12,'2023-02-09 10:46:32',503.785617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18753,12,12,'2023-02-09 10:46:32',503.805000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18754,12,12,'2023-02-09 10:46:32',504.377618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18755,12,12,'2023-02-09 10:46:32',504.388622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18756,12,12,'2023-02-09 10:46:32',504.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18757,12,12,'2023-02-09 10:46:32',504.825000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18758,12,12,'2023-02-09 10:46:32',505.398624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18759,12,12,'2023-02-09 10:46:32',505.409618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18760,12,12,'2023-02-09 10:46:32',505.825618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18761,12,12,'2023-02-09 10:46:32',505.845001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18762,12,12,'2023-02-09 10:46:32',506.416623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18763,12,12,'2023-02-09 10:46:32',506.427617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18764,12,12,'2023-02-09 10:46:32',506.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18765,12,12,'2023-02-09 10:46:32',506.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18766,12,12,'2023-02-09 10:46:32',507.437619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18767,12,12,'2023-02-09 10:46:32',507.448623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18768,12,12,'2023-02-09 10:46:32',507.865619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18769,12,12,'2023-02-09 10:46:32',507.885002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18770,12,12,'2023-02-09 10:46:32',508.455618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18771,12,12,'2023-02-09 10:46:32',508.466622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18772,12,12,'2023-02-09 10:46:32',508.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18773,12,12,'2023-02-09 10:46:32',508.918993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18774,12,12,'2023-02-09 10:46:32',509.476624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18775,12,12,'2023-02-09 10:46:32',509.487618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18776,12,12,'2023-02-09 10:46:32',509.905620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18777,12,12,'2023-02-09 10:46:32',509.961001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18778,12,12,'2023-02-09 10:46:32',510.494623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18779,12,12,'2023-02-09 10:46:32',510.505617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18780,12,12,'2023-02-09 10:46:32',510.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18781,12,12,'2023-02-09 10:46:32',510.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18782,12,12,'2023-02-09 10:46:32',511.515620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18783,12,12,'2023-02-09 10:46:32',511.526623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18784,12,12,'2023-02-09 10:46:32',511.945621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18785,12,12,'2023-02-09 10:46:32',511.964994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18786,12,12,'2023-02-09 10:46:32',512.538618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18787,12,12,'2023-02-09 10:46:32',512.549621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18788,12,12,'2023-02-09 10:46:32',512.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18789,12,12,'2023-02-09 10:46:32',512.984994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18790,12,12,'2023-02-09 10:46:32',513.555621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18791,12,12,'2023-02-09 10:46:32',513.566624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18792,12,12,'2023-02-09 10:46:32',513.985622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18793,12,12,'2023-02-09 10:46:32',514.004995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18794,12,12,'2023-02-09 10:46:32',514.577623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18795,12,12,'2023-02-09 10:46:32',514.588616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18796,12,12,'2023-02-09 10:46:32',515.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18797,12,12,'2023-02-09 10:46:32',515.024995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18798,12,12,'2023-02-09 10:46:32',515.598619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18799,12,12,'2023-02-09 10:46:32',515.609623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18800,12,12,'2023-02-09 10:46:32',516.025623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18801,12,12,'2023-02-09 10:46:32',516.044996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18802,12,12,'2023-02-09 10:46:32',516.616618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18803,12,12,'2023-02-09 10:46:32',516.627622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18804,12,12,'2023-02-09 10:46:32',517.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18805,12,12,'2023-02-09 10:46:32',517.100995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18806,12,12,'2023-02-09 10:46:32',517.634617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18807,12,12,'2023-02-09 10:46:32',517.645621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18808,12,12,'2023-02-09 10:46:32',518.065624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18809,12,12,'2023-02-09 10:46:32',518.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18810,12,12,'2023-02-09 10:46:32',518.655623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18811,12,12,'2023-02-09 10:46:32',518.666617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18812,12,12,'2023-02-09 10:46:32',519.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18813,12,12,'2023-02-09 10:46:32',519.104997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18814,12,12,'2023-02-09 10:46:32',519.678621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18815,12,12,'2023-02-09 10:46:32',519.688619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18816,12,12,'2023-02-09 10:46:32',520.105625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18817,12,12,'2023-02-09 10:46:32',520.125993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18818,12,12,'2023-02-09 10:46:32',520.695624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18819,12,12,'2023-02-09 10:46:32',520.706618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18820,12,12,'2023-02-09 10:46:32',521.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18821,12,12,'2023-02-09 10:46:32',521.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18822,12,12,'2023-02-09 10:46:32',521.717626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18823,12,12,'2023-02-09 10:46:32',521.727624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18824,12,12,'2023-02-09 10:46:32',522.145626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18825,12,12,'2023-02-09 10:46:32',522.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18826,12,12,'2023-02-09 10:46:32',522.738623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18827,12,12,'2023-02-09 10:46:32',522.749626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18828,12,12,'2023-02-09 10:46:32',523.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18829,12,12,'2023-02-09 10:46:32',523.184999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18830,12,12,'2023-02-09 10:46:32',523.756621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18831,12,12,'2023-02-09 10:46:32',523.767625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18832,12,12,'2023-02-09 10:46:32',524.185617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18833,12,12,'2023-02-09 10:46:32',524.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18834,12,12,'2023-02-09 10:46:32',524.777618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18835,12,12,'2023-02-09 10:46:32',524.788621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18836,12,12,'2023-02-09 10:46:32',525.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18837,12,12,'2023-02-09 10:46:32',525.239001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18838,12,12,'2023-02-09 10:46:32',525.795617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18839,12,12,'2023-02-09 10:46:32',525.806620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18840,12,12,'2023-02-09 10:46:32',526.225618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18841,12,12,'2023-02-09 10:46:32',526.280999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18842,12,12,'2023-02-09 10:46:32',526.816623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18843,12,12,'2023-02-09 10:46:32',526.827617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18844,12,12,'2023-02-09 10:46:32',527.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18845,12,12,'2023-02-09 10:46:32',527.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18846,12,12,'2023-02-09 10:46:32',527.834622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18847,12,12,'2023-02-09 10:46:32',527.845626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18848,12,12,'2023-02-09 10:46:32',528.265619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18849,12,12,'2023-02-09 10:46:32',528.285002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18850,12,12,'2023-02-09 10:46:32',528.855618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18851,12,12,'2023-02-09 10:46:32',528.866622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18852,12,12,'2023-02-09 10:46:32',529.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18853,12,12,'2023-02-09 10:46:32',529.305002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18854,12,12,'2023-02-09 10:46:32',529.878626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18855,12,12,'2023-02-09 10:46:32',529.889620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18856,12,12,'2023-02-09 10:46:32',530.305620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18857,12,12,'2023-02-09 10:46:32',530.325003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18858,12,12,'2023-02-09 10:46:32',530.895619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18859,12,12,'2023-02-09 10:46:32',530.906623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18860,12,12,'2023-02-09 10:46:32',531.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18861,12,12,'2023-02-09 10:46:32',531.344993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18862,12,12,'2023-02-09 10:46:32',531.917621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18863,12,12,'2023-02-09 10:46:32',531.928625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18864,12,12,'2023-02-09 10:46:32',532.345621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18865,12,12,'2023-02-09 10:46:32',532.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18866,12,12,'2023-02-09 10:46:32',532.934624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18867,12,12,'2023-02-09 10:46:32',532.945618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18868,12,12,'2023-02-09 10:46:32',533.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18869,12,12,'2023-02-09 10:46:32',533.421003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18870,12,12,'2023-02-09 10:46:32',533.956626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18871,12,12,'2023-02-09 10:46:32',533.967620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18872,12,12,'2023-02-09 10:46:32',534.385622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18873,12,12,'2023-02-09 10:46:32',534.404995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18874,12,12,'2023-02-09 10:46:32',534.974625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18875,12,12,'2023-02-09 10:46:32',534.985619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18876,12,12,'2023-02-09 10:46:32',535.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18877,12,12,'2023-02-09 10:46:32',535.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18878,12,12,'2023-02-09 10:46:32',535.995622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18879,12,12,'2023-02-09 10:46:32',536.006625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18880,12,12,'2023-02-09 10:46:32',536.425623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18881,12,12,'2023-02-09 10:46:32',536.458997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18882,12,12,'2023-02-09 10:46:32',537.018620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18883,12,12,'2023-02-09 10:46:32',537.029623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18884,12,12,'2023-02-09 10:46:32',537.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18885,12,12,'2023-02-09 10:46:32',537.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18886,12,12,'2023-02-09 10:46:32',538.035623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18887,12,12,'2023-02-09 10:46:32',538.046626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18888,12,12,'2023-02-09 10:46:32',538.465624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18889,12,12,'2023-02-09 10:46:32',538.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18890,12,12,'2023-02-09 10:46:32',539.057625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18891,12,12,'2023-02-09 10:46:32',539.068618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18892,12,12,'2023-02-09 10:46:32',539.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18893,12,12,'2023-02-09 10:46:32',539.504997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18894,12,12,'2023-02-09 10:46:32',540.078621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18895,12,12,'2023-02-09 10:46:32',540.089625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18896,12,12,'2023-02-09 10:46:32',540.505625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18897,12,12,'2023-02-09 10:46:32',540.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18898,12,12,'2023-02-09 10:46:32',541.096620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18899,12,12,'2023-02-09 10:46:32',541.107624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18900,12,12,'2023-02-09 10:46:32',541.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18901,12,12,'2023-02-09 10:46:32',541.544998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18902,12,12,'2023-02-09 10:46:32',542.117616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18903,12,12,'2023-02-09 10:46:32',542.128620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18904,12,12,'2023-02-09 10:46:32',542.545616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18905,12,12,'2023-02-09 10:46:32',542.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18906,12,12,'2023-02-09 10:46:32',543.135625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18907,12,12,'2023-02-09 10:46:32',543.146619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18908,12,12,'2023-02-09 10:46:32',543.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18909,12,12,'2023-02-09 10:46:32',543.620998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18910,12,12,'2023-02-09 10:46:32',544.156621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18911,12,12,'2023-02-09 10:46:32',544.166619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18912,12,12,'2023-02-09 10:46:32',544.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18913,12,12,'2023-02-09 10:46:32',544.605000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18914,12,12,'2023-02-09 10:46:32',545.174620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18915,12,12,'2023-02-09 10:46:32',545.185624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18916,12,12,'2023-02-09 10:46:32',545.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18917,12,12,'2023-02-09 10:46:32',545.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18918,12,12,'2023-02-09 10:46:32',546.195617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18919,12,12,'2023-02-09 10:46:32',546.206620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18920,12,12,'2023-02-09 10:46:32',546.625618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18921,12,12,'2023-02-09 10:46:32',546.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18922,12,12,'2023-02-09 10:46:32',547.218625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18923,12,12,'2023-02-09 10:46:32',547.228622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18924,12,12,'2023-02-09 10:46:32',547.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18925,12,12,'2023-02-09 10:46:32',547.665997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18926,12,12,'2023-02-09 10:46:32',548.234622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18927,12,12,'2023-02-09 10:46:32',548.245626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18928,12,12,'2023-02-09 10:46:32',548.665619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18929,12,12,'2023-02-09 10:46:32',548.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18930,12,12,'2023-02-09 10:46:32',549.257620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18931,12,12,'2023-02-09 10:46:32',549.268623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18932,12,12,'2023-02-09 10:46:32',549.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18933,12,12,'2023-02-09 10:46:32',549.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18934,12,12,'2023-02-09 10:46:32',550.278626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18935,12,12,'2023-02-09 10:46:32',550.288624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18936,12,12,'2023-02-09 10:46:32',550.705620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18937,12,12,'2023-02-09 10:46:32',550.724993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18938,12,12,'2023-02-09 10:46:32',551.296625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18939,12,12,'2023-02-09 10:46:32',551.307619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18940,12,12,'2023-02-09 10:46:32',551.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18941,12,12,'2023-02-09 10:46:32',551.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18942,12,12,'2023-02-09 10:46:32',552.314624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18943,12,12,'2023-02-09 10:46:32',552.325618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18944,12,12,'2023-02-09 10:46:32',552.745621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18945,12,12,'2023-02-09 10:46:32',552.764994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18946,12,12,'2023-02-09 10:46:32',553.335620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18947,12,12,'2023-02-09 10:46:32',553.346624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18948,12,12,'2023-02-09 10:46:32',553.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18949,12,12,'2023-02-09 10:46:32',553.784994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18950,12,12,'2023-02-09 10:46:32',554.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18951,12,12,'2023-02-09 10:46:32',554.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18952,12,12,'2023-02-09 10:46:32',554.785622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18953,12,12,'2023-02-09 10:46:32',554.840993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18954,12,12,'2023-02-09 10:46:32',555.374625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18955,12,12,'2023-02-09 10:46:32',555.385619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18956,12,12,'2023-02-09 10:46:32',555.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18957,12,12,'2023-02-09 10:46:32',555.824995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18958,12,12,'2023-02-09 10:46:32',556.397623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18959,12,12,'2023-02-09 10:46:32',556.408617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18960,12,12,'2023-02-09 10:46:32',556.825623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18961,12,12,'2023-02-09 10:46:32',556.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18962,12,12,'2023-02-09 10:46:32',557.418620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18963,12,12,'2023-02-09 10:46:32',557.429623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18964,12,12,'2023-02-09 10:46:32',557.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18965,12,12,'2023-02-09 10:46:32',557.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18966,12,12,'2023-02-09 10:46:32',558.436618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18967,12,12,'2023-02-09 10:46:32',558.447622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18968,12,12,'2023-02-09 10:46:32',558.865624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18969,12,12,'2023-02-09 10:46:32',558.920995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18970,12,12,'2023-02-09 10:46:32',559.457625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18971,12,12,'2023-02-09 10:46:32',559.468618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18972,12,12,'2023-02-09 10:46:32',559.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18973,12,12,'2023-02-09 10:46:32',559.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18974,12,12,'2023-02-09 10:46:32',560.475624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18975,12,12,'2023-02-09 10:46:32',560.486617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18976,12,12,'2023-02-09 10:46:32',560.905625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18977,12,12,'2023-02-09 10:46:32',560.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18978,12,12,'2023-02-09 10:46:32',561.496620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18979,12,12,'2023-02-09 10:46:32',561.507624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18980,12,12,'2023-02-09 10:46:32',561.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18981,12,12,'2023-02-09 10:46:32',561.944998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18982,12,12,'2023-02-09 10:46:32',562.514619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18983,12,12,'2023-02-09 10:46:32',562.525623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18984,12,12,'2023-02-09 10:46:32',562.945626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18985,12,12,'2023-02-09 10:46:32',562.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18986,12,12,'2023-02-09 10:46:32',563.535625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18987,12,12,'2023-02-09 10:46:32',563.546619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18988,12,12,'2023-02-09 10:46:32',563.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18989,12,12,'2023-02-09 10:46:32',563.999000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18990,12,12,'2023-02-09 10:46:32',564.557617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18991,12,12,'2023-02-09 10:46:32',564.568621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18992,12,12,'2023-02-09 10:46:32',564.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18993,12,12,'2023-02-09 10:46:32',565.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18994,12,12,'2023-02-09 10:46:32',565.574620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18995,12,12,'2023-02-09 10:46:32',565.585624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18996,12,12,'2023-02-09 10:46:32',566.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18997,12,12,'2023-02-09 10:46:32',566.025000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18998,12,12,'2023-02-09 10:46:32',566.597618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18999,12,12,'2023-02-09 10:46:32',566.608622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19000,12,12,'2023-02-09 10:46:32',567.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19001,12,12,'2023-02-09 10:46:32',567.080999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19002,12,12,'2023-02-09 10:46:32',567.618625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19003,12,12,'2023-02-09 10:46:32',567.628622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19004,12,12,'2023-02-09 10:46:32',568.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19005,12,12,'2023-02-09 10:46:32',568.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19006,12,12,'2023-02-09 10:46:32',568.636623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19007,12,12,'2023-02-09 10:46:32',568.647617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19008,12,12,'2023-02-09 10:46:32',569.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19009,12,12,'2023-02-09 10:46:32',569.085002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19010,12,12,'2023-02-09 10:46:32',569.654622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19011,12,12,'2023-02-09 10:46:32',569.665626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19012,12,12,'2023-02-09 10:46:32',570.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19013,12,12,'2023-02-09 10:46:32',570.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19014,12,12,'2023-02-09 10:46:32',570.675619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19015,12,12,'2023-02-09 10:46:32',570.686622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19016,12,12,'2023-02-09 10:46:32',571.105620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19017,12,12,'2023-02-09 10:46:32',571.125003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19018,12,12,'2023-02-09 10:46:32',571.697621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19019,12,12,'2023-02-09 10:46:32',571.708624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19020,12,12,'2023-02-09 10:46:32',572.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19021,12,12,'2023-02-09 10:46:32',572.144993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19022,12,12,'2023-02-09 10:46:32',572.714624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19023,12,12,'2023-02-09 10:46:32',572.725618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19024,12,12,'2023-02-09 10:46:32',573.145621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19025,12,12,'2023-02-09 10:46:32',573.164994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19026,12,12,'2023-02-09 10:46:32',573.737622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19027,12,12,'2023-02-09 10:46:32',573.748626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19028,12,12,'2023-02-09 10:46:32',574.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19029,12,12,'2023-02-09 10:46:32',574.221999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19030,12,12,'2023-02-09 10:46:32',574.758618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19031,12,12,'2023-02-09 10:46:32',574.769622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19032,12,12,'2023-02-09 10:46:32',575.185622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19033,12,12,'2023-02-09 10:46:32',575.206000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19034,12,12,'2023-02-09 10:46:32',575.776617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19035,12,12,'2023-02-09 10:46:32',575.787621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19036,12,12,'2023-02-09 10:46:32',576.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19037,12,12,'2023-02-09 10:46:32',576.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19038,12,12,'2023-02-09 10:46:32',576.797623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19039,12,12,'2023-02-09 10:46:32',576.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19040,12,12,'2023-02-09 10:46:32',577.225623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19041,12,12,'2023-02-09 10:46:32',577.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19042,12,12,'2023-02-09 10:46:32',577.815622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19043,12,12,'2023-02-09 10:46:32',577.826626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19044,12,12,'2023-02-09 10:46:32',578.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19045,12,12,'2023-02-09 10:46:32',578.264996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19046,12,12,'2023-02-09 10:46:32',578.836618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19047,12,12,'2023-02-09 10:46:32',578.847622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19048,12,12,'2023-02-09 10:46:32',579.265624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19049,12,12,'2023-02-09 10:46:32',579.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19050,12,12,'2023-02-09 10:46:32',579.858621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19051,12,12,'2023-02-09 10:46:32',579.869624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19052,12,12,'2023-02-09 10:46:32',580.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19053,12,12,'2023-02-09 10:46:32',580.340996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19054,12,12,'2023-02-09 10:46:32',580.875624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19055,12,12,'2023-02-09 10:46:32',580.886617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19056,12,12,'2023-02-09 10:46:32',581.305625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19057,12,12,'2023-02-09 10:46:32',581.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19058,12,12,'2023-02-09 10:46:32',581.897626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19059,12,12,'2023-02-09 10:46:32',581.908619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19060,12,12,'2023-02-09 10:46:32',582.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19061,12,12,'2023-02-09 10:46:32',582.344998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19062,12,12,'2023-02-09 10:46:32',582.914619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19063,12,12,'2023-02-09 10:46:32',582.925623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19064,12,12,'2023-02-09 10:46:32',583.345616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19065,12,12,'2023-02-09 10:46:32',583.364999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19066,12,12,'2023-02-09 10:46:32',583.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19067,12,12,'2023-02-09 10:46:32',583.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19068,12,12,'2023-02-09 10:46:32',584.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19069,12,12,'2023-02-09 10:46:32',584.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19070,12,12,'2023-02-09 10:46:32',584.958623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19071,12,12,'2023-02-09 10:46:32',584.968621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19072,12,12,'2023-02-09 10:46:32',585.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19073,12,12,'2023-02-09 10:46:32',585.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19074,12,12,'2023-02-09 10:46:32',585.976622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19075,12,12,'2023-02-09 10:46:32',585.987626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19076,12,12,'2023-02-09 10:46:32',586.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19077,12,12,'2023-02-09 10:46:32',586.425000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19078,12,12,'2023-02-09 10:46:32',586.998624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19079,12,12,'2023-02-09 10:46:32',587.009618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19080,12,12,'2023-02-09 10:46:32',587.425618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19081,12,12,'2023-02-09 10:46:32',587.480999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19082,12,12,'2023-02-09 10:46:32',588.015617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19083,12,12,'2023-02-09 10:46:32',588.026621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19084,12,12,'2023-02-09 10:46:32',588.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19085,12,12,'2023-02-09 10:46:32',588.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19086,12,12,'2023-02-09 10:46:32',589.037619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19087,12,12,'2023-02-09 10:46:32',589.048623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19088,12,12,'2023-02-09 10:46:32',589.465619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19089,12,12,'2023-02-09 10:46:32',589.485002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19090,12,12,'2023-02-09 10:46:32',590.054622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19091,12,12,'2023-02-09 10:46:32',590.065626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19092,12,12,'2023-02-09 10:46:32',590.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19093,12,12,'2023-02-09 10:46:32',590.505002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19094,12,12,'2023-02-09 10:46:32',591.076624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19095,12,12,'2023-02-09 10:46:32',591.087618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19096,12,12,'2023-02-09 10:46:32',591.505620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19097,12,12,'2023-02-09 10:46:32',591.538994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19098,12,12,'2023-02-09 10:46:32',592.097621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19099,12,12,'2023-02-09 10:46:32',592.108624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19100,12,12,'2023-02-09 10:46:32',592.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19101,12,12,'2023-02-09 10:46:32',592.544993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19102,12,12,'2023-02-09 10:46:32',593.116625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19103,12,12,'2023-02-09 10:46:32',593.126623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19104,12,12,'2023-02-09 10:46:32',593.545621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19105,12,12,'2023-02-09 10:46:32',593.564994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19106,12,12,'2023-02-09 10:46:32',594.137622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19107,12,12,'2023-02-09 10:46:32',594.148625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19108,12,12,'2023-02-09 10:46:32',594.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19109,12,12,'2023-02-09 10:46:32',594.620993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19110,12,12,'2023-02-09 10:46:32',595.155621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19111,12,12,'2023-02-09 10:46:32',595.166624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19112,12,12,'2023-02-09 10:46:32',595.585622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19113,12,12,'2023-02-09 10:46:32',595.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19114,12,12,'2023-02-09 10:46:32',596.176617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19115,12,12,'2023-02-09 10:46:32',596.187621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19116,12,12,'2023-02-09 10:46:32',596.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19117,12,12,'2023-02-09 10:46:32',596.624995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19118,12,12,'2023-02-09 10:46:32',597.194626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19119,12,12,'2023-02-09 10:46:32',597.205620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19120,12,12,'2023-02-09 10:46:32',597.625623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19121,12,12,'2023-02-09 10:46:32',597.644996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19122,12,12,'2023-02-09 10:46:32',598.215622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19123,12,12,'2023-02-09 10:46:32',598.226626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19124,12,12,'2023-02-09 10:46:32',598.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19125,12,12,'2023-02-09 10:46:32',598.664996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19126,12,12,'2023-02-09 10:46:32',599.237624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19127,12,12,'2023-02-09 10:46:32',599.248618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19128,12,12,'2023-02-09 10:46:32',599.665624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19129,12,12,'2023-02-09 10:46:32',599.684997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19130,12,12,'2023-02-09 10:46:32',600.254617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19131,12,12,'2023-02-09 10:46:32',600.265621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19132,12,12,'2023-02-09 10:46:32',600.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19133,12,12,'2023-02-09 10:46:32',600.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19134,12,12,'2023-02-09 10:46:32',601.276619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19135,12,12,'2023-02-09 10:46:32',601.287623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19136,12,12,'2023-02-09 10:46:32',601.705625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19137,12,12,'2023-02-09 10:46:32',601.760996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19138,12,12,'2023-02-09 10:46:32',602.297626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19139,12,12,'2023-02-09 10:46:32',602.308619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19140,12,12,'2023-02-09 10:46:32',602.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19141,12,12,'2023-02-09 10:46:32',602.758999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19142,12,12,'2023-02-09 10:46:32',603.316620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19143,12,12,'2023-02-09 10:46:32',603.327624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19144,12,12,'2023-02-09 10:46:32',603.745626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19145,12,12,'2023-02-09 10:46:32',603.764999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19146,12,12,'2023-02-09 10:46:32',604.334619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19147,12,12,'2023-02-09 10:46:32',604.345623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19148,12,12,'2023-02-09 10:46:32',604.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19149,12,12,'2023-02-09 10:46:32',604.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19150,12,12,'2023-02-09 10:46:32',605.355626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19151,12,12,'2023-02-09 10:46:32',605.366619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19152,12,12,'2023-02-09 10:46:32',605.785617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19153,12,12,'2023-02-09 10:46:32',605.805000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19154,12,12,'2023-02-09 10:46:32',606.377618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19155,12,12,'2023-02-09 10:46:32',606.388621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19156,12,12,'2023-02-09 10:46:32',606.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19157,12,12,'2023-02-09 10:46:32',606.825000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19158,12,12,'2023-02-09 10:46:32',607.394621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19159,12,12,'2023-02-09 10:46:32',607.405625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19160,12,12,'2023-02-09 10:46:32',607.825618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19161,12,12,'2023-02-09 10:46:32',607.845001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19162,12,12,'2023-02-09 10:46:32',608.416623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19163,12,12,'2023-02-09 10:46:32',608.427617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19164,12,12,'2023-02-09 10:46:32',608.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19165,12,12,'2023-02-09 10:46:32',608.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19166,12,12,'2023-02-09 10:46:32',609.437619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19167,12,12,'2023-02-09 10:46:32',609.448623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19168,12,12,'2023-02-09 10:46:32',609.865619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19169,12,12,'2023-02-09 10:46:32',609.885002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19170,12,12,'2023-02-09 10:46:32',610.456624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19171,12,12,'2023-02-09 10:46:32',610.466622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19172,12,12,'2023-02-09 10:46:32',610.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19173,12,12,'2023-02-09 10:46:32',610.941001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19174,12,12,'2023-02-09 10:46:32',611.477620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19175,12,12,'2023-02-09 10:46:32',611.488624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19176,12,12,'2023-02-09 10:46:32',611.905620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19177,12,12,'2023-02-09 10:46:32',611.925003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19178,12,12,'2023-02-09 10:46:32',612.495619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19179,12,12,'2023-02-09 10:46:32',612.506623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19180,12,12,'2023-02-09 10:46:32',612.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19181,12,12,'2023-02-09 10:46:32',612.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19182,12,12,'2023-02-09 10:46:32',613.516625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19183,12,12,'2023-02-09 10:46:32',613.527619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19184,12,12,'2023-02-09 10:46:32',613.945621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19185,12,12,'2023-02-09 10:46:32',613.964994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19186,12,12,'2023-02-09 10:46:32',614.538617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19187,12,12,'2023-02-09 10:46:32',614.549621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19188,12,12,'2023-02-09 10:46:32',614.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19189,12,12,'2023-02-09 10:46:32',614.984994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19190,12,12,'2023-02-09 10:46:32',615.555621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19191,12,12,'2023-02-09 10:46:32',615.566624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19192,12,12,'2023-02-09 10:46:32',615.985622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19193,12,12,'2023-02-09 10:46:32',616.004995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19194,12,12,'2023-02-09 10:46:32',616.577623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19195,12,12,'2023-02-09 10:46:32',616.588626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19196,12,12,'2023-02-09 10:46:32',617.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19197,12,12,'2023-02-09 10:46:32',617.024995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19198,12,12,'2023-02-09 10:46:32',617.598619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19199,12,12,'2023-02-09 10:46:32',617.609623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19200,12,12,'2023-02-09 10:46:32',618.025623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19201,12,12,'2023-02-09 10:46:32',618.044996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19202,12,12,'2023-02-09 10:46:32',618.616618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19203,12,12,'2023-02-09 10:46:32',618.627622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19204,12,12,'2023-02-09 10:46:32',619.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19205,12,12,'2023-02-09 10:46:32',619.078997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19206,12,12,'2023-02-09 10:46:32',619.637624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19207,12,12,'2023-02-09 10:46:32',619.648618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19208,12,12,'2023-02-09 10:46:32',620.065624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19209,12,12,'2023-02-09 10:46:32',620.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19210,12,12,'2023-02-09 10:46:32',620.656619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19211,12,12,'2023-02-09 10:46:32',620.666617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19212,12,12,'2023-02-09 10:46:32',621.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19213,12,12,'2023-02-09 10:46:32',621.140996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19214,12,12,'2023-02-09 10:46:32',621.678621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19215,12,12,'2023-02-09 10:46:32',621.689625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19216,12,12,'2023-02-09 10:46:32',622.105625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19217,12,12,'2023-02-09 10:46:32',622.124998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19218,12,12,'2023-02-09 10:46:32',622.695624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19219,12,12,'2023-02-09 10:46:32',622.705622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19220,12,12,'2023-02-09 10:46:32',623.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19221,12,12,'2023-02-09 10:46:32',623.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19222,12,12,'2023-02-09 10:46:32',623.717626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19223,12,12,'2023-02-09 10:46:32',623.728620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19224,12,12,'2023-02-09 10:46:32',624.145616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19225,12,12,'2023-02-09 10:46:32',624.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19226,12,12,'2023-02-09 10:46:32',624.738623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19227,12,12,'2023-02-09 10:46:32',624.749616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19228,12,12,'2023-02-09 10:46:32',625.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19229,12,12,'2023-02-09 10:46:32',625.184999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19230,12,12,'2023-02-09 10:46:32',625.756621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19231,12,12,'2023-02-09 10:46:32',625.767625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19232,12,12,'2023-02-09 10:46:32',626.185617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19233,12,12,'2023-02-09 10:46:32',626.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19234,12,12,'2023-02-09 10:46:32',626.777618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19235,12,12,'2023-02-09 10:46:32',626.788621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19236,12,12,'2023-02-09 10:46:32',627.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19237,12,12,'2023-02-09 10:46:32',627.260999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19238,12,12,'2023-02-09 10:46:32',627.795617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19239,12,12,'2023-02-09 10:46:32',627.806620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19240,12,12,'2023-02-09 10:46:32',628.225618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19241,12,12,'2023-02-09 10:46:32',628.245001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19242,12,12,'2023-02-09 10:46:32',628.816623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19243,12,12,'2023-02-09 10:46:32',628.827617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19244,12,12,'2023-02-09 10:46:32',629.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19245,12,12,'2023-02-09 10:46:32',629.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19246,12,12,'2023-02-09 10:46:32',629.835618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19247,12,12,'2023-02-09 10:46:32',629.846621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19248,12,12,'2023-02-09 10:46:32',630.265619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19249,12,12,'2023-02-09 10:46:32',630.298993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19250,12,12,'2023-02-09 10:46:32',630.856624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19251,12,12,'2023-02-09 10:46:32',630.866622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19252,12,12,'2023-02-09 10:46:32',631.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19253,12,12,'2023-02-09 10:46:32',631.305002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19254,12,12,'2023-02-09 10:46:32',631.878626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19255,12,12,'2023-02-09 10:46:32',631.889620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19256,12,12,'2023-02-09 10:46:32',632.305620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19257,12,12,'2023-02-09 10:46:32',632.325003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19258,12,12,'2023-02-09 10:46:32',632.895619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19259,12,12,'2023-02-09 10:46:32',632.906623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19260,12,12,'2023-02-09 10:46:32',633.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19261,12,12,'2023-02-09 10:46:32',633.344993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19262,12,12,'2023-02-09 10:46:32',633.917621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19263,12,12,'2023-02-09 10:46:32',633.928625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19264,12,12,'2023-02-09 10:46:32',634.345621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19265,12,12,'2023-02-09 10:46:32',634.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19266,12,12,'2023-02-09 10:46:32',634.934624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19267,12,12,'2023-02-09 10:46:32',634.945618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19268,12,12,'2023-02-09 10:46:32',635.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19269,12,12,'2023-02-09 10:46:32',635.420993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19270,12,12,'2023-02-09 10:46:32',635.956616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19271,12,12,'2023-02-09 10:46:32',635.967620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19272,12,12,'2023-02-09 10:46:32',636.385622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19273,12,12,'2023-02-09 10:46:32',636.404995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19274,12,12,'2023-02-09 10:46:32',636.974625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19275,12,12,'2023-02-09 10:46:32',636.985619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19276,12,12,'2023-02-09 10:46:32',637.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19277,12,12,'2023-02-09 10:46:32',637.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19278,12,12,'2023-02-09 10:46:32',637.996617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19279,12,12,'2023-02-09 10:46:32',638.007621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19280,12,12,'2023-02-09 10:46:32',638.425623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19281,12,12,'2023-02-09 10:46:32',638.444996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19282,12,12,'2023-02-09 10:46:32',639.018619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19283,12,12,'2023-02-09 10:46:32',639.029623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19284,12,12,'2023-02-09 10:46:32',639.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19285,12,12,'2023-02-09 10:46:32',639.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19286,12,12,'2023-02-09 10:46:32',640.034617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19287,12,12,'2023-02-09 10:46:32',640.045621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19288,12,12,'2023-02-09 10:46:32',640.465624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19289,12,12,'2023-02-09 10:46:32',640.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19290,12,12,'2023-02-09 10:46:32',641.057625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19291,12,12,'2023-02-09 10:46:32',641.068618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19292,12,12,'2023-02-09 10:46:32',641.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19293,12,12,'2023-02-09 10:46:32',641.504997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19294,12,12,'2023-02-09 10:46:32',642.074618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19295,12,12,'2023-02-09 10:46:32',642.085622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19296,12,12,'2023-02-09 10:46:32',642.505625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19297,12,12,'2023-02-09 10:46:32',642.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19298,12,12,'2023-02-09 10:46:32',643.096620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19299,12,12,'2023-02-09 10:46:32',643.107624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19300,12,12,'2023-02-09 10:46:32',643.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19301,12,12,'2023-02-09 10:46:32',643.544998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19302,12,12,'2023-02-09 10:46:32',644.117626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19303,12,12,'2023-02-09 10:46:32',644.128620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19304,12,12,'2023-02-09 10:46:32',644.545626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19305,12,12,'2023-02-09 10:46:32',644.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19306,12,12,'2023-02-09 10:46:32',645.135625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19307,12,12,'2023-02-09 10:46:32',645.146619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19308,12,12,'2023-02-09 10:46:32',645.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19309,12,12,'2023-02-09 10:46:32',645.584999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19310,12,12,'2023-02-09 10:46:32',646.156621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19311,12,12,'2023-02-09 10:46:32',646.167625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19312,12,12,'2023-02-09 10:46:32',646.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19313,12,12,'2023-02-09 10:46:32',646.619001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19314,12,12,'2023-02-09 10:46:32',647.175626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19315,12,12,'2023-02-09 10:46:32',647.185624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19316,12,12,'2023-02-09 10:46:32',647.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19317,12,12,'2023-02-09 10:46:32',647.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19318,12,12,'2023-02-09 10:46:32',648.196622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19319,12,12,'2023-02-09 10:46:32',648.206620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19320,12,12,'2023-02-09 10:46:32',648.625618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19321,12,12,'2023-02-09 10:46:32',648.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19322,12,12,'2023-02-09 10:46:32',649.218625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19323,12,12,'2023-02-09 10:46:32',649.229618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19324,12,12,'2023-02-09 10:46:32',649.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19325,12,12,'2023-02-09 10:46:32',649.701000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19326,12,12,'2023-02-09 10:46:32',650.235618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19327,12,12,'2023-02-09 10:46:32',650.246621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19328,12,12,'2023-02-09 10:46:32',650.665619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19329,12,12,'2023-02-09 10:46:32',650.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19330,12,12,'2023-02-09 10:46:32',651.257620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19331,12,12,'2023-02-09 10:46:32',651.268623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19332,12,12,'2023-02-09 10:46:32',651.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19333,12,12,'2023-02-09 10:46:32',651.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19334,12,12,'2023-02-09 10:46:32',652.278626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19335,12,12,'2023-02-09 10:46:32',652.289620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19336,12,12,'2023-02-09 10:46:32',652.705620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19337,12,12,'2023-02-09 10:46:32',652.725003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19338,12,12,'2023-02-09 10:46:32',653.297621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19339,12,12,'2023-02-09 10:46:32',653.307619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19340,12,12,'2023-02-09 10:46:32',653.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19341,12,12,'2023-02-09 10:46:32',653.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19342,12,12,'2023-02-09 10:46:32',654.314624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19343,12,12,'2023-02-09 10:46:32',654.325618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19344,12,12,'2023-02-09 10:46:32',654.745621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19345,12,12,'2023-02-09 10:46:32',654.764994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19346,12,12,'2023-02-09 10:46:32',655.335620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19347,12,12,'2023-02-09 10:46:32',655.346624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19348,12,12,'2023-02-09 10:46:32',655.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19349,12,12,'2023-02-09 10:46:32',655.821003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19350,12,12,'2023-02-09 10:46:32',656.358618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19351,12,12,'2023-02-09 10:46:32',656.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19352,12,12,'2023-02-09 10:46:32',656.785622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19353,12,12,'2023-02-09 10:46:32',656.804995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19354,12,12,'2023-02-09 10:46:32',657.375621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19355,12,12,'2023-02-09 10:46:32',657.386625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19356,12,12,'2023-02-09 10:46:32',657.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19357,12,12,'2023-02-09 10:46:32',657.838996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19358,12,12,'2023-02-09 10:46:32',658.397623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19359,12,12,'2023-02-09 10:46:32',658.408617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19360,12,12,'2023-02-09 10:46:32',658.825623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19361,12,12,'2023-02-09 10:46:32',658.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19362,12,12,'2023-02-09 10:46:32',659.418619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19363,12,12,'2023-02-09 10:46:32',659.429623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19364,12,12,'2023-02-09 10:46:32',659.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19365,12,12,'2023-02-09 10:46:32',659.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19366,12,12,'2023-02-09 10:46:32',660.436618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19367,12,12,'2023-02-09 10:46:32',660.447622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19368,12,12,'2023-02-09 10:46:32',660.865624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19369,12,12,'2023-02-09 10:46:32',660.884997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19370,12,12,'2023-02-09 10:46:32',661.457625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19371,12,12,'2023-02-09 10:46:32',661.468618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19372,12,12,'2023-02-09 10:46:32',661.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19373,12,12,'2023-02-09 10:46:32',661.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19374,12,12,'2023-02-09 10:46:32',662.475624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19375,12,12,'2023-02-09 10:46:32',662.486617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19376,12,12,'2023-02-09 10:46:32',662.905625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19377,12,12,'2023-02-09 10:46:32',662.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19378,12,12,'2023-02-09 10:46:32',663.496620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19379,12,12,'2023-02-09 10:46:32',663.507624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19380,12,12,'2023-02-09 10:46:32',663.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19381,12,12,'2023-02-09 10:46:32',663.944998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19382,12,12,'2023-02-09 10:46:32',664.514619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19383,12,12,'2023-02-09 10:46:32',664.525623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19384,12,12,'2023-02-09 10:46:32',664.945616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19385,12,12,'2023-02-09 10:46:32',664.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19386,12,12,'2023-02-09 10:46:32',665.536621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19387,12,12,'2023-02-09 10:46:32',665.546619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19388,12,12,'2023-02-09 10:46:32',665.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19389,12,12,'2023-02-09 10:46:32',666.020998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19390,12,12,'2023-02-09 10:46:32',666.558623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19391,12,12,'2023-02-09 10:46:32',666.569617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19392,12,12,'2023-02-09 10:46:32',666.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19393,12,12,'2023-02-09 10:46:32',667.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19394,12,12,'2023-02-09 10:46:32',667.575626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19395,12,12,'2023-02-09 10:46:32',667.585624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19396,12,12,'2023-02-09 10:46:32',668.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19397,12,12,'2023-02-09 10:46:32',668.025000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19398,12,12,'2023-02-09 10:46:32',668.597618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19399,12,12,'2023-02-09 10:46:32',668.608622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19400,12,12,'2023-02-09 10:46:32',669.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19401,12,12,'2023-02-09 10:46:32',669.045001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19402,12,12,'2023-02-09 10:46:32',669.618625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19403,12,12,'2023-02-09 10:46:32',669.629618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19404,12,12,'2023-02-09 10:46:32',670.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19405,12,12,'2023-02-09 10:46:32',670.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19406,12,12,'2023-02-09 10:46:32',670.636623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19407,12,12,'2023-02-09 10:46:32',670.646621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19408,12,12,'2023-02-09 10:46:32',671.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19409,12,12,'2023-02-09 10:46:32',671.085002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19410,12,12,'2023-02-09 10:46:32',671.654622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19411,12,12,'2023-02-09 10:46:32',671.665626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19412,12,12,'2023-02-09 10:46:32',672.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19413,12,12,'2023-02-09 10:46:32',672.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19414,12,12,'2023-02-09 10:46:32',672.675619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19415,12,12,'2023-02-09 10:46:32',672.686622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19416,12,12,'2023-02-09 10:46:32',673.105620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19417,12,12,'2023-02-09 10:46:32',673.125003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19418,12,12,'2023-02-09 10:46:32',673.698616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19419,12,12,'2023-02-09 10:46:32',673.708624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19420,12,12,'2023-02-09 10:46:32',674.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19421,12,12,'2023-02-09 10:46:32',674.158994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19422,12,12,'2023-02-09 10:46:32',674.714624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19423,12,12,'2023-02-09 10:46:32',674.725618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19424,12,12,'2023-02-09 10:46:32',675.145621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19425,12,12,'2023-02-09 10:46:32',675.164994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19426,12,12,'2023-02-09 10:46:32',675.737622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19427,12,12,'2023-02-09 10:46:32',675.748625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19428,12,12,'2023-02-09 10:46:32',676.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19429,12,12,'2023-02-09 10:46:32',676.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19430,12,12,'2023-02-09 10:46:32',676.758618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19431,12,12,'2023-02-09 10:46:32',676.768626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19432,12,12,'2023-02-09 10:46:32',677.185622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19433,12,12,'2023-02-09 10:46:32',677.240993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19434,12,12,'2023-02-09 10:46:32',677.776617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19435,12,12,'2023-02-09 10:46:32',677.787621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19436,12,12,'2023-02-09 10:46:32',678.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19437,12,12,'2023-02-09 10:46:32',678.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19438,12,12,'2023-02-09 10:46:32',678.797623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19439,12,12,'2023-02-09 10:46:32',678.808617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19440,12,12,'2023-02-09 10:46:32',679.225623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19441,12,12,'2023-02-09 10:46:32',679.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19442,12,12,'2023-02-09 10:46:32',679.815622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19443,12,12,'2023-02-09 10:46:32',679.826626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19444,12,12,'2023-02-09 10:46:32',680.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19445,12,12,'2023-02-09 10:46:32',680.264996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19446,12,12,'2023-02-09 10:46:32',680.836618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19447,12,12,'2023-02-09 10:46:32',680.847622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19448,12,12,'2023-02-09 10:46:32',681.265624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19449,12,12,'2023-02-09 10:46:32',681.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19450,12,12,'2023-02-09 10:46:32',681.854617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19451,12,12,'2023-02-09 10:46:32',681.863619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19452,12,12,'2023-02-09 10:46:32',682.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19453,12,12,'2023-02-09 10:46:32',682.304997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19454,12,12,'2023-02-09 10:46:32',682.875624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19455,12,12,'2023-02-09 10:46:32',682.889625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19456,12,12,'2023-02-09 10:46:32',683.305625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19457,12,12,'2023-02-09 10:46:32',683.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19458,12,12,'2023-02-09 10:46:32',683.898621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19459,12,12,'2023-02-09 10:46:32',683.909625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19460,12,12,'2023-02-09 10:46:32',684.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19461,12,12,'2023-02-09 10:46:32',684.380997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19462,12,12,'2023-02-09 10:46:32',684.915625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19463,12,12,'2023-02-09 10:46:32',684.925623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19464,12,12,'2023-02-09 10:46:32',685.345626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19465,12,12,'2023-02-09 10:46:32',685.379000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19466,12,12,'2023-02-09 10:46:32',685.937617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19467,12,12,'2023-02-09 10:46:32',685.948620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19468,12,12,'2023-02-09 10:46:32',686.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19469,12,12,'2023-02-09 10:46:32',686.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19470,12,12,'2023-02-09 10:46:32',686.958623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19471,12,12,'2023-02-09 10:46:32',686.969617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19472,12,12,'2023-02-09 10:46:32',687.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19473,12,12,'2023-02-09 10:46:32',687.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19474,12,12,'2023-02-09 10:46:32',687.976622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19475,12,12,'2023-02-09 10:46:32',687.987626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19476,12,12,'2023-02-09 10:46:32',688.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19477,12,12,'2023-02-09 10:46:32',688.425000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19478,12,12,'2023-02-09 10:46:32',688.994621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19479,13,13,'2023-02-09 11:06:27',0.668997,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19480,13,13,'2023-02-09 11:06:27',0.868342,0.000000,NULL,'2',NULL,NULL,'SESS',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19481,13,13,'2023-02-09 11:06:27',0.920343,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19482,13,13,'2023-02-09 11:06:27',2.017000,0.000000,NULL,'5',NULL,NULL,'boundary',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19483,13,13,'2023-02-09 11:06:27',5.987340,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19484,13,13,'2023-02-09 11:06:27',6.087339,0.000000,NULL,'nan',NULL,NULL,'bas+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19485,13,13,'2023-02-09 11:06:27',186.160341,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19486,13,13,'2023-02-09 11:06:27',186.210995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19487,14,14,'2023-02-09 11:12:06',0.683993,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19488,14,14,'2023-02-09 11:12:06',0.884948,0.000000,NULL,'2',NULL,NULL,'SESS',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19489,14,14,'2023-02-09 11:12:06',0.934948,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19490,14,14,'2023-02-09 11:12:06',2.018999,0.000000,NULL,'nan',NULL,NULL,'VEnd',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19491,14,14,'2023-02-09 11:12:06',2.033000,0.000000,NULL,'5',NULL,NULL,'boundary',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19492,14,14,'2023-02-09 11:12:06',2.539994,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19493,14,14,'2023-02-09 11:12:06',4.737950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19494,14,14,'2023-02-09 11:12:06',4.746942,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19495,14,14,'2023-02-09 11:12:06',5.019994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19496,14,14,'2023-02-09 11:12:06',5.252944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19497,14,14,'2023-02-09 11:12:06',5.526992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19498,14,14,'2023-02-09 11:12:06',5.748948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19499,14,14,'2023-02-09 11:12:06',5.754943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19500,14,14,'2023-02-09 11:12:06',5.772947,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19501,14,14,'2023-02-09 11:12:06',6.046000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19502,14,14,'2023-02-09 11:12:06',6.279945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19503,14,14,'2023-02-09 11:12:06',6.552997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19504,14,14,'2023-02-09 11:12:06',6.774943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19505,14,14,'2023-02-09 11:12:06',6.788945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19506,14,14,'2023-02-09 11:12:06',6.798943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19507,14,14,'2023-02-09 11:12:06',7.073001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19508,14,14,'2023-02-09 11:12:06',7.305950,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19509,14,14,'2023-02-09 11:12:06',7.578993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19510,14,14,'2023-02-09 11:12:06',7.800949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19511,14,14,'2023-02-09 11:12:06',7.806944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19512,14,14,'2023-02-09 11:12:06',7.824948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19513,14,14,'2023-02-09 11:12:06',8.098996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19514,14,14,'2023-02-09 11:12:06',8.331946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19515,14,14,'2023-02-09 11:12:06',8.605994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19516,14,14,'2023-02-09 11:12:06',8.826944,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19517,14,14,'2023-02-09 11:12:06',8.833945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19518,14,14,'2023-02-09 11:12:06',8.851949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19519,14,14,'2023-02-09 11:12:06',9.125001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19520,14,14,'2023-02-09 11:12:06',9.357951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19521,14,14,'2023-02-09 11:12:06',9.631999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19522,14,14,'2023-02-09 11:12:06',9.852949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19523,14,14,'2023-02-09 11:12:06',9.859950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19524,14,14,'2023-02-09 11:12:06',9.877944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19525,14,14,'2023-02-09 11:12:06',10.151992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19526,14,14,'2023-02-09 11:12:06',10.383946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19527,14,14,'2023-02-09 11:12:06',10.657994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19528,14,14,'2023-02-09 11:12:06',10.878945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19529,14,14,'2023-02-09 11:12:06',10.885945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19530,14,14,'2023-02-09 11:12:06',10.903949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19531,14,14,'2023-02-09 11:12:06',11.177997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19532,14,14,'2023-02-09 11:12:06',11.410947,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19533,14,14,'2023-02-09 11:12:06',11.684000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19534,14,14,'2023-02-09 11:12:06',11.905946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19535,14,14,'2023-02-09 11:12:06',11.912946,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19536,14,14,'2023-02-09 11:12:06',11.930951,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19537,14,14,'2023-02-09 11:12:06',12.203993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19538,14,14,'2023-02-09 11:12:06',12.436943,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19539,14,14,'2023-02-09 11:12:06',12.711001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19540,14,14,'2023-02-09 11:12:06',12.931951,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19541,14,14,'2023-02-09 11:12:06',12.938951,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19542,14,14,'2023-02-09 11:12:06',12.956946,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19543,14,14,'2023-02-09 11:12:06',13.229998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19544,14,14,'2023-02-09 11:12:06',13.463944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19545,14,14,'2023-02-09 11:12:06',13.736996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19546,14,14,'2023-02-09 11:12:06',13.957946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19547,14,14,'2023-02-09 11:12:06',13.964947,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19548,14,14,'2023-02-09 11:12:06',13.982951,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19549,14,14,'2023-02-09 11:12:06',14.256999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19550,14,14,'2023-02-09 11:12:06',14.489949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19551,14,14,'2023-02-09 11:12:06',14.763001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19552,14,14,'2023-02-09 11:12:06',14.984947,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19553,14,14,'2023-02-09 11:12:06',14.991948,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19554,14,14,'2023-02-09 11:12:06',15.009942,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19555,14,14,'2023-02-09 11:12:06',15.282994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19556,14,14,'2023-02-09 11:12:06',15.515944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19557,14,14,'2023-02-09 11:12:06',15.790002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19558,14,14,'2023-02-09 11:12:06',16.010942,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19559,14,14,'2023-02-09 11:12:06',16.017943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19560,14,14,'2023-02-09 11:12:06',16.035947,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19561,14,14,'2023-02-09 11:12:06',16.309000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19562,14,14,'2023-02-09 11:12:06',16.541949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19563,14,14,'2023-02-09 11:12:06',16.815997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19564,14,14,'2023-02-09 11:12:06',17.036948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19565,14,14,'2023-02-09 11:12:06',17.043948,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19566,14,14,'2023-02-09 11:12:06',17.061943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19567,14,14,'2023-02-09 11:12:06',17.336001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19568,14,14,'2023-02-09 11:12:06',17.567945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19569,14,14,'2023-02-09 11:12:06',17.841993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19570,14,14,'2023-02-09 11:12:06',18.062943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19571,14,14,'2023-02-09 11:12:06',18.069944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19572,14,14,'2023-02-09 11:12:06',18.087948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19573,14,14,'2023-02-09 11:12:06',18.361996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19574,14,14,'2023-02-09 11:12:06',18.594946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19575,14,14,'2023-02-09 11:12:06',18.868994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19576,14,14,'2023-02-09 11:12:06',19.088948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19577,14,14,'2023-02-09 11:12:06',19.095949,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19578,14,14,'2023-02-09 11:12:06',19.113943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19579,14,14,'2023-02-09 11:12:06',19.388001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19580,14,14,'2023-02-09 11:12:06',19.620951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19581,14,14,'2023-02-09 11:12:06',19.894999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19582,14,14,'2023-02-09 11:12:06',20.115949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19583,14,14,'2023-02-09 11:12:06',20.122950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19584,14,14,'2023-02-09 11:12:06',20.140944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19585,14,14,'2023-02-09 11:12:06',20.414992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19586,14,14,'2023-02-09 11:12:06',20.646946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19587,14,14,'2023-02-09 11:12:06',20.920994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19588,14,14,'2023-02-09 11:12:06',21.141945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19589,14,14,'2023-02-09 11:12:06',21.148945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19590,14,14,'2023-02-09 11:12:06',21.166949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19591,14,14,'2023-02-09 11:12:06',21.440997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19592,14,14,'2023-02-09 11:12:06',21.673947,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19593,14,14,'2023-02-09 11:12:06',21.947995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19594,14,14,'2023-02-09 11:12:06',22.168946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19595,14,14,'2023-02-09 11:12:06',22.174950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19596,14,14,'2023-02-09 11:12:06',22.192945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19597,14,14,'2023-02-09 11:12:06',22.466993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19598,14,14,'2023-02-09 11:12:06',22.699943,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19599,14,14,'2023-02-09 11:12:06',22.974001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19600,14,14,'2023-02-09 11:12:06',23.194951,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19601,14,14,'2023-02-09 11:12:06',23.201952,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19602,14,14,'2023-02-09 11:12:06',23.219946,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19603,14,14,'2023-02-09 11:12:06',23.492998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19604,14,14,'2023-02-09 11:12:06',23.725948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19605,14,14,'2023-02-09 11:12:06',23.999996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19606,14,14,'2023-02-09 11:12:06',24.220946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19607,14,14,'2023-02-09 11:12:06',24.227947,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19608,14,14,'2023-02-09 11:12:06',24.245951,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19609,14,14,'2023-02-09 11:12:06',24.519999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19610,14,14,'2023-02-09 11:12:06',24.751943,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19611,14,14,'2023-02-09 11:12:06',25.026001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19612,14,14,'2023-02-09 11:12:06',25.246952,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19613,14,14,'2023-02-09 11:12:06',25.253942,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19614,14,14,'2023-02-09 11:12:06',25.271946,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19615,14,14,'2023-02-09 11:12:06',25.545994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19616,14,14,'2023-02-09 11:12:06',25.777948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19617,14,14,'2023-02-09 11:12:06',26.052992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19618,14,14,'2023-02-09 11:12:06',26.273943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19619,14,14,'2023-02-09 11:12:06',26.280943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19620,14,14,'2023-02-09 11:12:06',26.297942,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19621,14,14,'2023-02-09 11:12:06',26.572000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19622,14,14,'2023-02-09 11:12:06',26.804949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19623,14,14,'2023-02-09 11:12:06',27.078997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19624,14,14,'2023-02-09 11:12:06',27.299948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19625,14,14,'2023-02-09 11:12:06',27.306948,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19626,14,14,'2023-02-09 11:12:06',27.324943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19627,14,14,'2023-02-09 11:12:06',27.599001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19628,14,14,'2023-02-09 11:12:06',27.830945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19629,14,14,'2023-02-09 11:12:06',28.103997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19630,14,14,'2023-02-09 11:12:06',28.325943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19631,14,14,'2023-02-09 11:12:06',28.332944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19632,14,14,'2023-02-09 11:12:06',28.350948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19633,14,14,'2023-02-09 11:12:06',28.624996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19634,14,14,'2023-02-09 11:12:06',28.856950,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19635,14,14,'2023-02-09 11:12:06',29.130998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19636,14,14,'2023-02-09 11:12:06',29.351948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19637,14,14,'2023-02-09 11:12:06',29.358949,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19638,14,14,'2023-02-09 11:12:06',29.376943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19639,14,14,'2023-02-09 11:12:06',29.651001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19640,14,14,'2023-02-09 11:12:06',29.883951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19641,14,14,'2023-02-09 11:12:06',30.156993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19642,14,14,'2023-02-09 11:12:06',30.378949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19643,14,14,'2023-02-09 11:12:06',30.385950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19644,14,14,'2023-02-09 11:12:06',30.403944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19645,14,14,'2023-02-09 11:12:06',30.677992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19646,14,14,'2023-02-09 11:12:06',30.909946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19647,14,14,'2023-02-09 11:12:06',31.182999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19648,14,14,'2023-02-09 11:12:06',31.404945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19649,14,14,'2023-02-09 11:12:06',31.411945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19650,14,14,'2023-02-09 11:12:06',31.429950,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19651,14,14,'2023-02-09 11:12:06',31.703002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19652,14,14,'2023-02-09 11:12:06',31.935952,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19653,14,14,'2023-02-09 11:12:06',32.210000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19654,14,14,'2023-02-09 11:12:06',32.430950,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19655,14,14,'2023-02-09 11:12:06',32.437951,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19656,14,14,'2023-02-09 11:12:06',32.455945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19657,14,14,'2023-02-09 11:12:06',32.728997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19658,14,14,'2023-02-09 11:12:06',32.961947,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19659,14,14,'2023-02-09 11:12:06',33.235995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19660,14,14,'2023-02-09 11:12:06',33.456945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19661,14,14,'2023-02-09 11:12:06',33.463946,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19662,14,14,'2023-02-09 11:12:06',33.481950,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19663,14,14,'2023-02-09 11:12:06',33.755998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19664,14,14,'2023-02-09 11:12:06',33.988948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19665,14,14,'2023-02-09 11:12:06',34.262000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19666,14,14,'2023-02-09 11:12:06',34.483946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19667,14,14,'2023-02-09 11:12:06',34.490947,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19668,14,14,'2023-02-09 11:12:06',34.507945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19669,14,14,'2023-02-09 11:12:06',34.781993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19670,14,14,'2023-02-09 11:12:06',35.014943,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19671,14,14,'2023-02-09 11:12:06',35.287995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19672,14,14,'2023-02-09 11:12:06',35.509952,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19673,14,14,'2023-02-09 11:12:06',35.516942,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19674,14,14,'2023-02-09 11:12:06',35.534946,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19675,14,14,'2023-02-09 11:12:06',35.807999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19676,14,14,'2023-02-09 11:12:06',36.040948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19677,14,14,'2023-02-09 11:12:06',36.314996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19678,14,14,'2023-02-09 11:12:06',36.535947,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19679,14,14,'2023-02-09 11:12:06',36.542947,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19680,14,14,'2023-02-09 11:12:06',36.560952,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19681,14,14,'2023-02-09 11:12:06',36.833994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19682,14,14,'2023-02-09 11:12:06',37.066944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19683,14,14,'2023-02-09 11:12:06',37.341002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19684,14,14,'2023-02-09 11:12:06',37.561942,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19685,14,14,'2023-02-09 11:12:06',37.568943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19686,14,14,'2023-02-09 11:12:06',37.586947,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19687,14,14,'2023-02-09 11:12:06',37.860995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19688,14,14,'2023-02-09 11:12:06',38.093945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19689,14,14,'2023-02-09 11:12:06',38.366997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19690,14,14,'2023-02-09 11:12:06',38.588943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19691,14,14,'2023-02-09 11:12:06',38.595944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19692,14,14,'2023-02-09 11:12:06',38.613948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19693,14,14,'2023-02-09 11:12:06',38.887000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19694,14,14,'2023-02-09 11:12:06',39.119950,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19695,14,14,'2023-02-09 11:12:06',39.393998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19696,14,14,'2023-02-09 11:12:06',39.614948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19697,14,14,'2023-02-09 11:12:06',39.621949,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19698,14,14,'2023-02-09 11:12:06',39.639943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19699,14,14,'2023-02-09 11:12:06',39.912995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19700,14,14,'2023-02-09 11:12:06',40.145945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19701,14,14,'2023-02-09 11:12:06',40.419993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19702,14,14,'2023-02-09 11:12:06',40.640944,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19703,14,14,'2023-02-09 11:12:06',40.647944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19704,14,14,'2023-02-09 11:12:06',40.665949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19705,14,14,'2023-02-09 11:12:06',40.939997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19706,14,14,'2023-02-09 11:12:06',41.172946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19707,14,14,'2023-02-09 11:12:06',41.445999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19708,14,14,'2023-02-09 11:12:06',41.666949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19709,14,14,'2023-02-09 11:12:06',41.673950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19710,14,14,'2023-02-09 11:12:06',41.692950,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19711,14,14,'2023-02-09 11:12:06',41.966002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19712,14,14,'2023-02-09 11:12:06',42.198942,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19713,14,14,'2023-02-09 11:12:06',42.473000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19714,14,14,'2023-02-09 11:12:06',42.693950,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19715,14,14,'2023-02-09 11:12:06',42.700951,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19716,14,14,'2023-02-09 11:12:06',42.718945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19717,14,14,'2023-02-09 11:12:06',42.991997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19718,14,14,'2023-02-09 11:12:06',43.224947,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19719,14,14,'2023-02-09 11:12:06',43.498995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19720,14,14,'2023-02-09 11:12:06',43.719945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19721,14,14,'2023-02-09 11:12:06',43.726946,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19722,14,14,'2023-02-09 11:12:06',43.744950,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19723,14,14,'2023-02-09 11:12:06',44.018998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19724,14,14,'2023-02-09 11:12:06',44.251948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19725,14,14,'2023-02-09 11:12:06',44.525000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19726,14,14,'2023-02-09 11:12:06',44.745951,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19727,14,14,'2023-02-09 11:12:06',44.752951,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19728,14,14,'2023-02-09 11:12:06',44.770945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19729,14,14,'2023-02-09 11:12:06',45.044993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19730,14,14,'2023-02-09 11:12:06',45.277943,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19731,14,14,'2023-02-09 11:12:06',45.552001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19732,14,14,'2023-02-09 11:12:06',45.771946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19733,14,14,'2023-02-09 11:12:06',45.778946,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19734,14,14,'2023-02-09 11:12:06',45.796951,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19735,14,14,'2023-02-09 11:12:06',46.070999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19736,14,14,'2023-02-09 11:12:06',46.303949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19737,14,14,'2023-02-09 11:12:06',46.577997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19738,14,14,'2023-02-09 11:12:06',46.798947,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19739,14,14,'2023-02-09 11:12:06',46.804952,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19740,14,14,'2023-02-09 11:12:06',46.823942,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19741,14,14,'2023-02-09 11:12:06',47.096994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19742,14,14,'2023-02-09 11:12:06',47.329944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19743,14,14,'2023-02-09 11:12:06',47.604002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19744,14,14,'2023-02-09 11:12:06',47.824942,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19745,14,14,'2023-02-09 11:12:06',47.831943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19746,14,14,'2023-02-09 11:12:06',47.849947,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19747,14,14,'2023-02-09 11:12:06',48.123995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19748,14,14,'2023-02-09 11:12:06',48.356945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19749,14,14,'2023-02-09 11:12:06',48.629997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19750,14,14,'2023-02-09 11:12:06',48.851943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19751,14,14,'2023-02-09 11:12:06',48.857948,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19752,14,14,'2023-02-09 11:12:06',48.876948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19753,14,14,'2023-02-09 11:12:06',49.150000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19754,14,14,'2023-02-09 11:12:06',49.382950,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19755,14,14,'2023-02-09 11:12:06',49.656998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19756,14,14,'2023-02-09 11:12:06',49.877948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19757,14,14,'2023-02-09 11:12:06',49.883943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19758,14,14,'2023-02-09 11:12:06',49.902943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19759,14,14,'2023-02-09 11:12:06',50.175996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19760,14,14,'2023-02-09 11:12:06',50.408945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19761,14,14,'2023-02-09 11:12:06',50.682993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19762,14,14,'2023-02-09 11:12:06',50.903944,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19763,14,14,'2023-02-09 11:12:06',50.910944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19764,14,14,'2023-02-09 11:12:06',50.928949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19765,14,14,'2023-02-09 11:12:06',51.202997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19766,14,14,'2023-02-09 11:12:06',51.434951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19767,14,14,'2023-02-09 11:12:06',51.708999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19768,14,14,'2023-02-09 11:12:06',51.929949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19769,14,14,'2023-02-09 11:12:06',51.936950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19770,14,14,'2023-02-09 11:12:06',51.954944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19771,14,14,'2023-02-09 11:12:06',52.228992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19772,14,14,'2023-02-09 11:12:06',52.460946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19773,14,14,'2023-02-09 11:12:06',52.736000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19774,14,14,'2023-02-09 11:12:06',52.955944,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19775,14,14,'2023-02-09 11:12:06',52.962945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19776,14,14,'2023-02-09 11:12:06',52.980949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19777,14,14,'2023-02-09 11:12:06',53.254997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19778,14,14,'2023-02-09 11:12:06',53.487947,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19779,14,14,'2023-02-09 11:12:06',53.760999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19780,14,14,'2023-02-09 11:12:06',53.981950,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19781,14,14,'2023-02-09 11:12:06',53.988950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19782,14,14,'2023-02-09 11:12:06',54.006944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19783,14,14,'2023-02-09 11:12:06',54.281998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19784,14,14,'2023-02-09 11:12:06',54.513942,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19785,14,14,'2023-02-09 11:12:06',54.786994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19786,14,14,'2023-02-09 11:12:06',55.008951,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19787,14,14,'2023-02-09 11:12:06',55.014945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19788,14,14,'2023-02-09 11:12:06',55.033945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19789,14,14,'2023-02-09 11:12:06',55.307993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19790,14,14,'2023-02-09 11:12:06',55.539948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19791,14,14,'2023-02-09 11:12:06',55.813996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19792,14,14,'2023-02-09 11:12:06',56.034946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19793,14,14,'2023-02-09 11:12:06',56.041946,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19794,14,14,'2023-02-09 11:12:06',56.059951,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19795,14,14,'2023-02-09 11:12:06',56.333999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19796,14,14,'2023-02-09 11:12:06',56.566949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19797,14,14,'2023-02-09 11:12:06',56.840001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19798,14,14,'2023-02-09 11:12:06',57.060951,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19799,14,14,'2023-02-09 11:12:06',57.067942,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19800,14,14,'2023-02-09 11:12:06',57.086952,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19801,14,14,'2023-02-09 11:12:06',57.361000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19802,14,14,'2023-02-09 11:12:06',57.592944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19803,14,14,'2023-02-09 11:12:06',57.865996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19804,14,14,'2023-02-09 11:12:06',58.087942,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19805,14,14,'2023-02-09 11:12:06',58.094943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19806,14,14,'2023-02-09 11:12:06',58.112947,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19807,14,14,'2023-02-09 11:12:06',58.385999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19808,14,14,'2023-02-09 11:12:06',58.618949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19809,14,14,'2023-02-09 11:12:06',58.892997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19810,14,14,'2023-02-09 11:12:06',59.113947,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19811,14,14,'2023-02-09 11:12:06',59.120948,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19812,14,14,'2023-02-09 11:12:06',59.138942,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19813,14,14,'2023-02-09 11:12:06',59.411995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19814,14,14,'2023-02-09 11:12:06',59.644944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19815,14,14,'2023-02-09 11:12:06',59.918992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19816,14,14,'2023-02-09 11:12:06',60.139943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19817,14,14,'2023-02-09 11:12:06',60.146943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19818,14,14,'2023-02-09 11:12:06',60.164948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19819,14,14,'2023-02-09 11:12:06',60.438000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19820,14,14,'2023-02-09 11:12:06',60.671945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19821,14,14,'2023-02-09 11:12:06',60.944998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19822,14,14,'2023-02-09 11:12:06',61.165948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19823,14,14,'2023-02-09 11:12:06',61.172949,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19824,14,14,'2023-02-09 11:12:06',61.190943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19825,14,14,'2023-02-09 11:12:06',61.465001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19826,14,14,'2023-02-09 11:12:06',61.697951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19827,14,14,'2023-02-09 11:12:06',61.970993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19828,14,14,'2023-02-09 11:12:06',62.192949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19829,14,14,'2023-02-09 11:12:06',62.199950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19830,14,14,'2023-02-09 11:12:06',62.217944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19831,14,14,'2023-02-09 11:12:06',62.490996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19832,14,14,'2023-02-09 11:12:06',62.723946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19833,14,14,'2023-02-09 11:12:06',62.997994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19834,14,14,'2023-02-09 11:12:06',63.218944,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19835,14,14,'2023-02-09 11:12:06',63.225945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19836,14,14,'2023-02-09 11:12:06',63.243949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19837,14,14,'2023-02-09 11:12:06',63.517001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19838,14,14,'2023-02-09 11:12:06',63.749951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19839,14,14,'2023-02-09 11:12:06',64.023999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19840,14,14,'2023-02-09 11:12:06',64.244950,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19841,14,14,'2023-02-09 11:12:06',64.251950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19842,14,14,'2023-02-09 11:12:06',64.269944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19843,14,14,'2023-02-09 11:12:06',64.543992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19844,14,14,'2023-02-09 11:12:06',64.776942,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19845,14,14,'2023-02-09 11:12:06',65.049995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19846,14,14,'2023-02-09 11:12:06',65.270945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19847,14,14,'2023-02-09 11:12:06',65.277945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19848,14,14,'2023-02-09 11:12:06',65.296945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19849,14,14,'2023-02-09 11:12:06',65.569998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19850,14,14,'2023-02-09 11:12:06',65.802948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19851,14,14,'2023-02-09 11:12:06',66.076996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); +INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19852,14,14,'2023-02-09 11:12:06',66.297946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); UNLOCK TABLES; SET FOREIGN_KEY_CHECKS=1; From 1471f74be26c125f1c09178bdc7240b8fc3aaf19 Mon Sep 17 00:00:00 2001 From: Jefferson Casimir Date: Thu, 1 Feb 2024 11:21:33 -0500 Subject: [PATCH 05/10] Revert "Removed 'AssembledHED' column from RB inserts" This reverts commit 2a6b8d4aa52aaed20b107c4a4a2d63b7853eaa1c. --- .../RB_files/RB_physiological_task_event.sql | 39704 ++++++++-------- 1 file changed, 19852 insertions(+), 19852 deletions(-) diff --git a/raisinbread/RB_files/RB_physiological_task_event.sql b/raisinbread/RB_files/RB_physiological_task_event.sql index b13b927d672..7a24d50a9e0 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`) 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`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7885,5,5,'2019-08-21 15:10:37',1177.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 (7886,5,5,'2019-08-21 15:10:37',1178.414000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7887,5,5,'2019-08-21 15:10:37',1179.329000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7888,5,5,'2019-08-21 15:10:37',1180.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 (7889,5,5,'2019-08-21 15:10:37',1180.560000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7890,5,5,'2019-08-21 15:10:37',1181.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 (7891,5,5,'2019-08-21 15:10:37',1182.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 (7892,5,5,'2019-08-21 15:10:37',1182.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 (7893,5,5,'2019-08-21 15:10:37',1183.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 (7894,5,5,'2019-08-21 15:10:37',1183.708000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7895,5,5,'2019-08-21 15:10:37',1184.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 (7896,5,5,'2019-08-21 15:10:37',1185.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 (7897,5,5,'2019-08-21 15:10:37',1186.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 (7898,5,5,'2019-08-21 15:10:37',1186.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 (7899,5,5,'2019-08-21 15:10:37',1187.454000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7900,5,5,'2019-08-21 15:10:37',1188.419000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7901,5,5,'2019-08-21 15:10:37',1188.813000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7902,5,5,'2019-08-21 15:10:37',1189.235000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7903,5,5,'2019-08-21 15:10:37',1190.067000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7904,5,5,'2019-08-21 15:10:37',1191.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 (7905,5,5,'2019-08-21 15:10:37',1191.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 (7906,5,5,'2019-08-21 15:10:37',1192.831000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7907,5,5,'2019-08-21 15:10:37',1193.217000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7908,5,5,'2019-08-21 15:10:37',1193.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 (7909,5,5,'2019-08-21 15:10:37',1194.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 (7910,5,5,'2019-08-21 15:10:37',1194.612000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7911,5,5,'2019-08-21 15:10:37',1195.528000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7912,5,5,'2019-08-21 15:10:37',1196.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 (7913,5,5,'2019-08-21 15:10:37',1196.915000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7914,5,5,'2019-08-21 15:10:37',1197.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 (7915,5,5,'2019-08-21 15:10:37',1197.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 (7916,5,5,'2019-08-21 15:10:37',1198.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 (7917,5,5,'2019-08-21 15:10:37',1199.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 (7918,5,5,'2019-08-21 15:10:37',1200.156000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7919,5,5,'2019-08-21 15:10:37',1200.624000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7920,5,5,'2019-08-21 15:10:37',1201.089000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7921,5,5,'2019-08-21 15:10:37',1202.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 (7922,5,5,'2019-08-21 15:10:37',1202.970000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7923,5,5,'2019-08-21 15:10:37',1203.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 (7924,5,5,'2019-08-21 15:10:37',1204.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 (7925,5,5,'2019-08-21 15:10:37',1204.668000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7926,5,5,'2019-08-21 15:10:37',1205.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 (7927,5,5,'2019-08-21 15:10:37',1206.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 (7928,5,5,'2019-08-21 15:10:37',1206.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 (7929,5,5,'2019-08-21 15:10:37',1207.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 (7930,5,5,'2019-08-21 15:10:37',1208.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 (7931,5,5,'2019-08-21 15:10:37',1209.097000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7932,5,5,'2019-08-21 15:10:37',1209.461000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7933,5,5,'2019-08-21 15:10:37',1210.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 (7934,5,5,'2019-08-21 15:10:37',1210.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 (7935,5,5,'2019-08-21 15:10:37',1211.588000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7936,5,5,'2019-08-21 15:10:37',1211.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 (7937,5,5,'2019-08-21 15:10:37',1212.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 (7938,5,5,'2019-08-21 15:10:37',1213.608000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7939,5,5,'2019-08-21 15:10:37',1213.926000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7940,5,5,'2019-08-21 15:10:37',1214.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 (7941,5,5,'2019-08-21 15:10:37',1215.373000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7942,5,5,'2019-08-21 15:10:37',1216.272000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7943,5,5,'2019-08-21 15:10:37',1217.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 (7944,5,5,'2019-08-21 15:10:37',1218.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 (7945,5,5,'2019-08-21 15:10:37',1218.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 (7946,5,5,'2019-08-21 15:10:37',1219.086000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7947,5,5,'2019-08-21 15:10:37',1219.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 (7948,5,5,'2019-08-21 15:10:37',1219.985000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7949,5,5,'2019-08-21 15:10:37',1220.817000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7950,5,5,'2019-08-21 15:10:37',1221.600000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7951,5,5,'2019-08-21 15:10:37',1221.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 (7952,5,5,'2019-08-21 15:10:37',1222.532000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7953,5,5,'2019-08-21 15:10:37',1223.414000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7954,5,5,'2019-08-21 15:10:37',1223.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 (7955,5,5,'2019-08-21 15:10:37',1224.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 (7956,5,5,'2019-08-21 15:10:37',1225.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 (7957,5,5,'2019-08-21 15:10:37',1226.128000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7958,5,5,'2019-08-21 15:10:37',1227.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 (7959,5,5,'2019-08-21 15:10:37',1227.459000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7960,5,5,'2019-08-21 15:10:37',1228.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 (7961,5,5,'2019-08-21 15:10:37',1228.958000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7962,5,5,'2019-08-21 15:10:37',1229.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 (7963,5,5,'2019-08-21 15:10:37',1230.130000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7964,5,5,'2019-08-21 15:10:37',1230.540000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7965,5,5,'2019-08-21 15:10:37',1231.473000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7966,5,5,'2019-08-21 15:10:37',1232.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 (7967,5,5,'2019-08-21 15:10:37',1233.420000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7968,5,5,'2019-08-21 15:10:37',1233.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 (7969,5,5,'2019-08-21 15:10:37',1234.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 (7970,5,5,'2019-08-21 15:10:37',1235.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 (7971,5,5,'2019-08-21 15:10:37',1236.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 (7972,5,5,'2019-08-21 15:10:37',1236.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 (7973,5,5,'2019-08-21 15:10:37',1236.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 (7974,5,5,'2019-08-21 15:10:37',1237.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 (7975,5,5,'2019-08-21 15:10:37',1238.748000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7976,5,5,'2019-08-21 15:10:37',1239.078000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7977,5,5,'2019-08-21 15:10:37',1239.696000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7978,5,5,'2019-08-21 15:10:37',1240.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 (7979,5,5,'2019-08-21 15:10:37',1241.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 (7980,5,5,'2019-08-21 15:10:37',1242.127000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7981,5,5,'2019-08-21 15:10:37',1242.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 (7982,5,5,'2019-08-21 15:10:37',1242.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 (7983,5,5,'2019-08-21 15:10:37',1243.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 (7984,5,5,'2019-08-21 15:10:37',1244.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 (7985,5,5,'2019-08-21 15:10:37',1244.708000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7986,5,5,'2019-08-21 15:10:37',1245.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 (7987,5,5,'2019-08-21 15:10:37',1246.489000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7988,5,5,'2019-08-21 15:10:37',1247.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 (7989,5,5,'2019-08-21 15:10:37',1247.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 (7990,5,5,'2019-08-21 15:10:37',1248.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 (7991,5,5,'2019-08-21 15:10:37',1249.253000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7992,5,5,'2019-08-21 15:10:37',1250.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 (7993,5,5,'2019-08-21 15:10:37',1250.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 (7994,5,5,'2019-08-21 15:10:37',1251.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 (7995,5,5,'2019-08-21 15:10:37',1251.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 (7996,5,5,'2019-08-21 15:10:37',1252.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 (7997,5,5,'2019-08-21 15:10:37',1252.916000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7998,5,5,'2019-08-21 15:10:37',1253.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 (7999,5,5,'2019-08-21 15:10:37',1254.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 (8000,5,5,'2019-08-21 15:10:37',1255.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 (8001,5,5,'2019-08-21 15:10:37',1256.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 (8002,5,5,'2019-08-21 15:10:37',1256.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 (8003,5,5,'2019-08-21 15:10:37',1257.395000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8004,5,5,'2019-08-21 15:10:37',1257.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 (8005,5,5,'2019-08-21 15:10:37',1258.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 (8006,5,5,'2019-08-21 15:10:37',1258.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 (8007,5,5,'2019-08-21 15:10:37',1259.791000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8008,5,5,'2019-08-21 15:10:37',1260.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 (8009,5,5,'2019-08-21 15:10:37',1260.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 (8010,5,5,'2019-08-21 15:10:37',1261.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 (8011,5,5,'2019-08-21 15:10:37',1262.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 (8012,5,5,'2019-08-21 15:10:37',1263.221000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8013,5,5,'2019-08-21 15:10:37',1263.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 (8014,6,6,'2019-08-21 15:10:44',0.645000,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 (8015,6,6,'2019-08-21 15:10:44',19.205000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8016,6,6,'2019-08-21 15:10:44',19.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 (8017,6,6,'2019-08-21 15:10:44',20.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 (8018,6,6,'2019-08-21 15:10:44',21.120000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8019,6,6,'2019-08-21 15:10:44',21.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 (8020,6,6,'2019-08-21 15:10:44',22.868000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8021,6,6,'2019-08-21 15:10:44',23.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 (8022,6,6,'2019-08-21 15:10:44',23.667000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8023,6,6,'2019-08-21 15:10:44',24.482000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8024,6,6,'2019-08-21 15:10:44',24.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 (8025,6,6,'2019-08-21 15:10:44',25.332000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8026,6,6,'2019-08-21 15:10:44',26.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 (8027,6,6,'2019-08-21 15:10:44',26.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 (8028,6,6,'2019-08-21 15:10:44',27.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 (8029,6,6,'2019-08-21 15:10:44',27.929000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8030,6,6,'2019-08-21 15:10:44',28.878000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8031,6,6,'2019-08-21 15:10:44',29.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 (8032,6,6,'2019-08-21 15:10:44',30.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 (8033,6,6,'2019-08-21 15:10:44',31.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 (8034,6,6,'2019-08-21 15:10:44',32.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 (8035,6,6,'2019-08-21 15:10:44',33.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 (8036,6,6,'2019-08-21 15:10:44',33.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 (8037,6,6,'2019-08-21 15:10:44',33.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 (8038,6,6,'2019-08-21 15:10:44',34.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 (8039,6,6,'2019-08-21 15:10:44',34.950000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8040,6,6,'2019-08-21 15:10:44',35.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 (8041,6,6,'2019-08-21 15:10:44',36.569000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8042,6,6,'2019-08-21 15:10:44',37.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 (8043,6,6,'2019-08-21 15:10:44',37.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 (8044,6,6,'2019-08-21 15:10:44',38.484000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8045,6,6,'2019-08-21 15:10:44',39.417000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8046,6,6,'2019-08-21 15:10:44',40.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 (8047,6,6,'2019-08-21 15:10:44',41.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 (8048,6,6,'2019-08-21 15:10:44',42.214000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8049,6,6,'2019-08-21 15:10:44',42.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 (8050,6,6,'2019-08-21 15:10:44',43.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 (8051,6,6,'2019-08-21 15:10:44',43.945000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8052,6,6,'2019-08-21 15:10:44',44.877000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8053,6,6,'2019-08-21 15:10:44',45.308000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8054,6,6,'2019-08-21 15:10:44',45.876000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8055,6,6,'2019-08-21 15:10:44',46.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 (8056,6,6,'2019-08-21 15:10:44',47.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 (8057,6,6,'2019-08-21 15:10:44',47.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 (8058,6,6,'2019-08-21 15:10:44',48.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 (8059,6,6,'2019-08-21 15:10:44',49.489000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8060,6,6,'2019-08-21 15:10:44',49.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 (8061,6,6,'2019-08-21 15:10:44',50.488000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8062,6,6,'2019-08-21 15:10:44',51.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 (8063,6,6,'2019-08-21 15:10:44',52.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 (8064,6,6,'2019-08-21 15:10:44',53.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 (8065,6,6,'2019-08-21 15:10:44',54.101000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8066,6,6,'2019-08-21 15:10:44',55.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 (8067,6,6,'2019-08-21 15:10:44',55.463000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8068,6,6,'2019-08-21 15:10:44',55.998000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8069,6,6,'2019-08-21 15:10:44',56.392000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8070,6,6,'2019-08-21 15:10:44',56.964000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8071,6,6,'2019-08-21 15:10:44',57.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 (8072,6,6,'2019-08-21 15:10:44',58.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 (8073,6,6,'2019-08-21 15:10:44',58.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 (8074,6,6,'2019-08-21 15:10:44',59.678000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8075,6,6,'2019-08-21 15:10:44',60.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 (8076,6,6,'2019-08-21 15:10:44',61.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 (8077,6,6,'2019-08-21 15:10:44',61.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 (8078,6,6,'2019-08-21 15:10:44',62.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 (8079,6,6,'2019-08-21 15:10:44',63.341000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8080,6,6,'2019-08-21 15:10:44',64.123000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8081,6,6,'2019-08-21 15:10:44',65.089000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8082,6,6,'2019-08-21 15:10:44',65.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 (8083,6,6,'2019-08-21 15:10:44',66.315000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8084,6,6,'2019-08-21 15:10:44',66.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 (8085,6,6,'2019-08-21 15:10:44',67.254000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8086,6,6,'2019-08-21 15:10:44',67.902000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8087,6,6,'2019-08-21 15:10:44',68.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 (8088,6,6,'2019-08-21 15:10:44',69.183000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8089,6,6,'2019-08-21 15:10:44',69.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 (8090,6,6,'2019-08-21 15:10:44',70.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 (8091,6,6,'2019-08-21 15:10:44',70.929000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8092,6,6,'2019-08-21 15:10:44',71.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 (8093,6,6,'2019-08-21 15:10:44',72.331000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8094,6,6,'2019-08-21 15:10:44',73.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 (8095,6,6,'2019-08-21 15:10:44',74.195000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8096,6,6,'2019-08-21 15:10:44',74.532000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8097,6,6,'2019-08-21 15:10:44',75.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 (8098,6,6,'2019-08-21 15:10:44',75.794000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8099,6,6,'2019-08-21 15:10:44',76.659000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8100,6,6,'2019-08-21 15:10:44',77.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 (8101,6,6,'2019-08-21 15:10:44',77.944000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8102,6,6,'2019-08-21 15:10:44',78.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 (8103,6,6,'2019-08-21 15:10:44',79.390000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8104,6,6,'2019-08-21 15:10:44',80.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 (8105,6,6,'2019-08-21 15:10:44',81.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 (8106,6,6,'2019-08-21 15:10:44',81.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 (8107,6,6,'2019-08-21 15:10:44',82.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 (8108,6,6,'2019-08-21 15:10:44',83.069000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8109,6,6,'2019-08-21 15:10:44',83.365000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8110,6,6,'2019-08-21 15:10:44',83.968000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8111,6,6,'2019-08-21 15:10:44',84.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 (8112,6,6,'2019-08-21 15:10:44',85.334000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8113,6,6,'2019-08-21 15:10:44',85.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 (8114,6,6,'2019-08-21 15:10:44',86.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 (8115,6,6,'2019-08-21 15:10:44',87.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 (8116,6,6,'2019-08-21 15:10:44',88.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 (8117,6,6,'2019-08-21 15:10:44',88.663000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8118,6,6,'2019-08-21 15:10:44',89.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 (8119,6,6,'2019-08-21 15:10:44',90.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 (8120,6,6,'2019-08-21 15:10:44',91.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 (8121,6,6,'2019-08-21 15:10:44',91.825000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8122,6,6,'2019-08-21 15:10:44',92.259000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8123,6,6,'2019-08-21 15:10:44',92.612000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8124,6,6,'2019-08-21 15:10:44',93.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 (8125,6,6,'2019-08-21 15:10:44',93.907000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8126,6,6,'2019-08-21 15:10:44',94.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 (8127,6,6,'2019-08-21 15:10:44',95.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 (8128,6,6,'2019-08-21 15:10:44',96.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 (8129,6,6,'2019-08-21 15:10:44',97.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 (8130,6,6,'2019-08-21 15:10:44',97.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 (8131,6,6,'2019-08-21 15:10:44',98.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 (8132,6,6,'2019-08-21 15:10:44',98.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 (8133,6,6,'2019-08-21 15:10:44',99.284000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8134,6,6,'2019-08-21 15:10:44',100.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 (8135,6,6,'2019-08-21 15:10:44',100.436000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8136,6,6,'2019-08-21 15:10:44',101.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 (8137,6,6,'2019-08-21 15:10:44',101.932000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8138,6,6,'2019-08-21 15:10:44',102.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 (8139,6,6,'2019-08-21 15:10:44',102.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 (8140,6,6,'2019-08-21 15:10:44',103.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 (8141,6,6,'2019-08-21 15:10:44',104.712000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8142,6,6,'2019-08-21 15:10:44',105.578000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8143,6,6,'2019-08-21 15:10:44',106.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 (8144,6,6,'2019-08-21 15:10:44',107.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 (8145,6,6,'2019-08-21 15:10:44',108.524000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8146,6,6,'2019-08-21 15:10:44',109.424000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8147,6,6,'2019-08-21 15:10:44',109.794000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8148,6,6,'2019-08-21 15:10:44',110.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 (8149,6,6,'2019-08-21 15:10:44',110.772000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8150,6,6,'2019-08-21 15:10:44',111.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 (8151,6,6,'2019-08-21 15:10:44',112.271000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8152,6,6,'2019-08-21 15:10:44',113.036000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8153,6,6,'2019-08-21 15:10:44',113.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 (8154,6,6,'2019-08-21 15:10:44',114.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 (8155,6,6,'2019-08-21 15:10:44',115.094000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8156,6,6,'2019-08-21 15:10:44',115.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 (8157,6,6,'2019-08-21 15:10:44',116.032000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8158,6,6,'2019-08-21 15:10:44',116.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 (8159,6,6,'2019-08-21 15:10:44',117.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 (8160,6,6,'2019-08-21 15:10:44',117.759000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8161,6,6,'2019-08-21 15:10:44',118.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 (8162,6,6,'2019-08-21 15:10:44',119.130000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8163,6,6,'2019-08-21 15:10:44',119.575000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8164,6,6,'2019-08-21 15:10:44',119.995000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8165,6,6,'2019-08-21 15:10:44',120.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 (8166,6,6,'2019-08-21 15:10:44',121.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 (8167,6,6,'2019-08-21 15:10:44',122.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 (8168,6,6,'2019-08-21 15:10:44',122.526000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8169,6,6,'2019-08-21 15:10:44',123.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 (8170,6,6,'2019-08-21 15:10:44',124.240000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8171,6,6,'2019-08-21 15:10:44',124.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 (8172,6,6,'2019-08-21 15:10:44',125.023000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8173,6,6,'2019-08-21 15:10:44',125.872000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8174,6,6,'2019-08-21 15:10:44',126.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 (8175,6,6,'2019-08-21 15:10:44',127.620000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8176,6,6,'2019-08-21 15:10:44',128.065000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8177,6,6,'2019-08-21 15:10:44',128.453000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8178,6,6,'2019-08-21 15:10:44',129.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 (8179,6,6,'2019-08-21 15:10:44',130.151000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8180,6,6,'2019-08-21 15:10:44',130.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 (8181,6,6,'2019-08-21 15:10:44',130.934000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8182,6,6,'2019-08-21 15:10:44',131.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 (8183,6,6,'2019-08-21 15:10:44',132.881000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8184,6,6,'2019-08-21 15:10:44',133.233000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8185,6,6,'2019-08-21 15:10:44',133.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 (8186,6,6,'2019-08-21 15:10:44',134.529000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8187,6,6,'2019-08-21 15:10:44',134.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 (8188,6,6,'2019-08-21 15:10:44',135.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 (8189,6,6,'2019-08-21 15:10:44',136.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 (8190,6,6,'2019-08-21 15:10:44',137.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 (8191,6,6,'2019-08-21 15:10:44',137.876000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8192,6,6,'2019-08-21 15:10:44',138.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 (8193,6,6,'2019-08-21 15:10:44',138.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 (8194,6,6,'2019-08-21 15:10:44',139.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 (8195,6,6,'2019-08-21 15:10:44',140.323000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8196,6,6,'2019-08-21 15:10:44',140.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 (8197,6,6,'2019-08-21 15:10:44',141.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 (8198,6,6,'2019-08-21 15:10:44',142.071000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8199,6,6,'2019-08-21 15:10:44',142.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 (8200,6,6,'2019-08-21 15:10:44',143.736000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8201,6,6,'2019-08-21 15:10:44',144.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 (8202,6,6,'2019-08-21 15:10:44',144.651000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8203,6,6,'2019-08-21 15:10:44',145.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 (8204,6,6,'2019-08-21 15:10:44',146.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 (8205,6,6,'2019-08-21 15:10:44',146.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 (8206,6,6,'2019-08-21 15:10:44',147.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 (8207,6,6,'2019-08-21 15:10:44',148.397000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8208,6,6,'2019-08-21 15:10:44',149.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 (8209,6,6,'2019-08-21 15:10:44',150.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 (8210,6,6,'2019-08-21 15:10:44',150.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 (8211,6,6,'2019-08-21 15:10:44',151.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 (8212,6,6,'2019-08-21 15:10:44',152.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 (8213,6,6,'2019-08-21 15:10:44',152.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 (8214,6,6,'2019-08-21 15:10:44',152.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 (8215,6,6,'2019-08-21 15:10:44',153.875000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8216,6,6,'2019-08-21 15:10:44',154.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 (8217,6,6,'2019-08-21 15:10:44',155.260000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8218,6,6,'2019-08-21 15:10:44',155.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 (8219,6,6,'2019-08-21 15:10:44',156.400000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8220,6,6,'2019-08-21 15:10:44',156.771000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8221,6,6,'2019-08-21 15:10:44',157.737000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8222,6,6,'2019-08-21 15:10:44',158.670000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8223,6,6,'2019-08-21 15:10:44',159.035000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8224,6,6,'2019-08-21 15:10:44',159.619000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8225,6,6,'2019-08-21 15:10:44',160.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 (8226,6,6,'2019-08-21 15:10:44',161.434000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8227,6,6,'2019-08-21 15:10:44',162.332000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8228,6,6,'2019-08-21 15:10:44',162.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 (8229,6,6,'2019-08-21 15:10:44',163.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 (8230,6,6,'2019-08-21 15:10:44',164.114000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8231,6,6,'2019-08-21 15:10:44',165.079000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8232,6,6,'2019-08-21 15:10:44',166.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 (8233,6,6,'2019-08-21 15:10:44',166.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 (8234,6,6,'2019-08-21 15:10:44',166.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 (8235,6,6,'2019-08-21 15:10:44',167.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 (8236,6,6,'2019-08-21 15:10:44',168.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 (8237,6,6,'2019-08-21 15:10:44',168.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 (8238,6,6,'2019-08-21 15:10:44',169.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 (8239,6,6,'2019-08-21 15:10:44',170.341000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8240,6,6,'2019-08-21 15:10:44',170.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 (8241,6,6,'2019-08-21 15:10:44',171.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 (8242,6,6,'2019-08-21 15:10:44',171.988000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8243,6,6,'2019-08-21 15:10:44',172.290000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8244,6,6,'2019-08-21 15:10:44',172.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 (8245,6,6,'2019-08-21 15:10:44',173.837000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8246,6,6,'2019-08-21 15:10:44',174.752000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8247,6,6,'2019-08-21 15:10:44',175.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 (8248,6,6,'2019-08-21 15:10:44',175.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 (8249,6,6,'2019-08-21 15:10:44',176.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 (8250,6,6,'2019-08-21 15:10:44',177.024000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8251,6,6,'2019-08-21 15:10:44',177.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 (8252,6,6,'2019-08-21 15:10:44',178.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 (8253,6,6,'2019-08-21 15:10:44',179.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 (8254,6,6,'2019-08-21 15:10:44',180.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 (8255,6,6,'2019-08-21 15:10:44',180.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 (8256,6,6,'2019-08-21 15:10:44',181.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 (8257,6,6,'2019-08-21 15:10:44',181.861000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8258,6,6,'2019-08-21 15:10:44',182.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 (8259,6,6,'2019-08-21 15:10:44',183.626000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8260,6,6,'2019-08-21 15:10:44',184.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 (8261,6,6,'2019-08-21 15:10:44',184.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 (8262,6,6,'2019-08-21 15:10:44',185.474000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8263,6,6,'2019-08-21 15:10:44',186.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 (8264,6,6,'2019-08-21 15:10:44',186.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 (8265,6,6,'2019-08-21 15:10:44',187.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 (8266,6,6,'2019-08-21 15:10:44',188.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 (8267,6,6,'2019-08-21 15:10:44',189.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 (8268,6,6,'2019-08-21 15:10:44',189.794000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8269,6,6,'2019-08-21 15:10:44',190.219000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8270,6,6,'2019-08-21 15:10:44',191.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 (8271,6,6,'2019-08-21 15:10:44',191.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 (8272,6,6,'2019-08-21 15:10:44',191.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 (8273,6,6,'2019-08-21 15:10:44',192.649000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8274,6,6,'2019-08-21 15:10:44',193.044000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8275,6,6,'2019-08-21 15:10:44',193.632000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8276,6,6,'2019-08-21 15:10:44',194.464000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8277,6,6,'2019-08-21 15:10:44',195.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 (8278,6,6,'2019-08-21 15:10:44',196.195000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8279,6,6,'2019-08-21 15:10:44',196.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 (8280,6,6,'2019-08-21 15:10:44',197.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 (8281,6,6,'2019-08-21 15:10:44',197.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 (8282,6,6,'2019-08-21 15:10:44',197.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 (8283,6,6,'2019-08-21 15:10:44',198.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 (8284,6,6,'2019-08-21 15:10:44',199.608000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8285,6,6,'2019-08-21 15:10:44',200.391000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8286,6,6,'2019-08-21 15:10:44',201.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 (8287,6,6,'2019-08-21 15:10:44',201.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 (8288,6,6,'2019-08-21 15:10:44',202.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 (8289,6,6,'2019-08-21 15:10:44',203.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 (8290,6,6,'2019-08-21 15:10:44',203.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 (8291,6,6,'2019-08-21 15:10:44',203.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 (8292,6,6,'2019-08-21 15:10:44',204.902000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8293,6,6,'2019-08-21 15:10:44',205.686000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8294,6,6,'2019-08-21 15:10:44',206.551000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8295,6,6,'2019-08-21 15:10:44',206.823000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8296,6,6,'2019-08-21 15:10:44',207.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 (8297,6,6,'2019-08-21 15:10:44',208.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 (8298,6,6,'2019-08-21 15:10:44',209.132000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8299,6,6,'2019-08-21 15:10:44',209.418000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8300,6,6,'2019-08-21 15:10:44',210.047000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8301,6,6,'2019-08-21 15:10:44',211.013000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8302,6,6,'2019-08-21 15:10:44',211.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 (8303,6,6,'2019-08-21 15:10:44',212.578000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8304,6,6,'2019-08-21 15:10:44',213.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 (8305,6,6,'2019-08-21 15:10:44',213.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 (8306,6,6,'2019-08-21 15:10:44',214.310000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8307,6,6,'2019-08-21 15:10:44',215.274000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8308,6,6,'2019-08-21 15:10:44',216.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 (8309,6,6,'2019-08-21 15:10:44',216.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 (8310,6,6,'2019-08-21 15:10:44',217.106000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8311,6,6,'2019-08-21 15:10:44',218.038000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8312,6,6,'2019-08-21 15:10:44',218.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 (8313,6,6,'2019-08-21 15:10:44',219.220000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8314,6,6,'2019-08-21 15:10:44',219.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 (8315,6,6,'2019-08-21 15:10:44',220.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 (8316,6,6,'2019-08-21 15:10:44',221.635000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8317,6,6,'2019-08-21 15:10:44',221.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 (8318,6,6,'2019-08-21 15:10:44',222.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 (8319,6,6,'2019-08-21 15:10:44',223.035000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8320,6,6,'2019-08-21 15:10:44',223.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 (8321,6,6,'2019-08-21 15:10:44',224.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 (8322,6,6,'2019-08-21 15:10:44',225.280000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8323,6,6,'2019-08-21 15:10:44',226.046000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8324,6,6,'2019-08-21 15:10:44',226.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 (8325,6,6,'2019-08-21 15:10:44',227.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 (8326,6,6,'2019-08-21 15:10:44',227.628000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8327,6,6,'2019-08-21 15:10:44',228.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 (8328,6,6,'2019-08-21 15:10:44',229.576000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8329,6,6,'2019-08-21 15:10:44',229.950000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8330,6,6,'2019-08-21 15:10:44',230.541000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8331,6,6,'2019-08-21 15:10:44',231.374000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8332,6,6,'2019-08-21 15:10:44',231.838000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8333,6,6,'2019-08-21 15:10:44',232.156000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8334,6,6,'2019-08-21 15:10:44',233.155000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8335,6,6,'2019-08-21 15:10:44',234.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 (8336,6,6,'2019-08-21 15:10:44',234.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 (8337,6,6,'2019-08-21 15:10:44',235.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 (8338,6,6,'2019-08-21 15:10:44',235.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 (8339,6,6,'2019-08-21 15:10:44',236.635000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8340,6,6,'2019-08-21 15:10:44',236.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 (8341,6,6,'2019-08-21 15:10:44',237.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 (8342,6,6,'2019-08-21 15:10:44',238.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 (8343,6,6,'2019-08-21 15:10:44',239.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 (8344,6,6,'2019-08-21 15:10:44',239.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 (8345,6,6,'2019-08-21 15:10:44',240.181000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8346,6,6,'2019-08-21 15:10:44',241.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 (8347,6,6,'2019-08-21 15:10:44',241.367000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8348,6,6,'2019-08-21 15:10:44',241.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 (8349,6,6,'2019-08-21 15:10:44',242.895000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8350,6,6,'2019-08-21 15:10:44',243.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 (8351,6,6,'2019-08-21 15:10:44',244.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 (8352,6,6,'2019-08-21 15:10:44',245.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 (8353,6,6,'2019-08-21 15:10:44',245.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 (8354,6,6,'2019-08-21 15:10:44',246.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 (8355,6,6,'2019-08-21 15:10:44',246.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 (8356,6,6,'2019-08-21 15:10:44',247.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 (8357,6,6,'2019-08-21 15:10:44',248.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 (8358,6,6,'2019-08-21 15:10:44',249.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 (8359,6,6,'2019-08-21 15:10:44',249.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 (8360,6,6,'2019-08-21 15:10:44',250.902000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8361,6,6,'2019-08-21 15:10:44',251.260000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8362,6,6,'2019-08-21 15:10:44',251.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 (8363,6,6,'2019-08-21 15:10:44',252.270000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8364,6,6,'2019-08-21 15:10:44',252.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 (8365,6,6,'2019-08-21 15:10:44',253.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 (8366,6,6,'2019-08-21 15:10:44',253.955000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8367,6,6,'2019-08-21 15:10:44',254.549000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8368,6,6,'2019-08-21 15:10:44',255.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 (8369,6,6,'2019-08-21 15:10:44',255.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 (8370,6,6,'2019-08-21 15:10:44',256.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 (8371,6,6,'2019-08-21 15:10:44',257.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 (8372,6,6,'2019-08-21 15:10:44',258.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 (8373,6,6,'2019-08-21 15:10:44',258.488000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8374,6,6,'2019-08-21 15:10:44',259.044000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8375,6,6,'2019-08-21 15:10:44',259.876000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8376,6,6,'2019-08-21 15:10:44',260.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 (8377,6,6,'2019-08-21 15:10:44',261.112000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8378,6,6,'2019-08-21 15:10:44',261.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 (8379,6,6,'2019-08-21 15:10:44',262.474000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8380,6,6,'2019-08-21 15:10:44',262.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 (8381,6,6,'2019-08-21 15:10:44',263.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 (8382,6,6,'2019-08-21 15:10:44',264.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 (8383,6,6,'2019-08-21 15:10:44',265.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 (8384,6,6,'2019-08-21 15:10:44',265.970000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8385,6,6,'2019-08-21 15:10:44',266.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 (8386,6,6,'2019-08-21 15:10:44',267.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 (8387,6,6,'2019-08-21 15:10:44',268.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 (8388,6,6,'2019-08-21 15:10:44',268.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 (8389,6,6,'2019-08-21 15:10:44',269.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 (8390,6,6,'2019-08-21 15:10:44',269.682000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8391,6,6,'2019-08-21 15:10:44',270.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 (8392,6,6,'2019-08-21 15:10:44',270.823000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8393,6,6,'2019-08-21 15:10:44',271.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 (8394,6,6,'2019-08-21 15:10:44',272.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 (8395,6,6,'2019-08-21 15:10:44',272.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 (8396,6,6,'2019-08-21 15:10:44',273.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 (8397,6,6,'2019-08-21 15:10:44',274.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 (8398,6,6,'2019-08-21 15:10:44',275.113000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8399,6,6,'2019-08-21 15:10:44',275.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 (8400,6,6,'2019-08-21 15:10:44',276.658000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8401,6,6,'2019-08-21 15:10:44',277.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 (8402,6,6,'2019-08-21 15:10:44',277.850000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8403,6,6,'2019-08-21 15:10:44',278.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 (8404,6,6,'2019-08-21 15:10:44',279.321000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8405,6,6,'2019-08-21 15:10:44',279.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 (8406,6,6,'2019-08-21 15:10:44',280.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 (8407,6,6,'2019-08-21 15:10:44',281.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 (8408,6,6,'2019-08-21 15:10:44',281.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 (8409,6,6,'2019-08-21 15:10:44',282.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 (8410,6,6,'2019-08-21 15:10:44',283.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 (8411,6,6,'2019-08-21 15:10:44',283.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 (8412,6,6,'2019-08-21 15:10:44',284.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 (8413,6,6,'2019-08-21 15:10:44',284.805000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8414,6,6,'2019-08-21 15:10:44',285.415000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8415,6,6,'2019-08-21 15:10:44',298.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 (8416,6,6,'2019-08-21 15:10:44',316.221000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8417,6,6,'2019-08-21 15:10:44',317.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 (8418,6,6,'2019-08-21 15:10:44',318.151000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8419,6,6,'2019-08-21 15:10:44',318.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 (8420,6,6,'2019-08-21 15:10:44',319.134000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8421,6,6,'2019-08-21 15:10:44',319.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 (8422,6,6,'2019-08-21 15:10:44',320.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 (8423,6,6,'2019-08-21 15:10:44',320.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 (8424,6,6,'2019-08-21 15:10:44',321.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 (8425,6,6,'2019-08-21 15:10:44',322.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 (8426,6,6,'2019-08-21 15:10:44',323.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 (8427,6,6,'2019-08-21 15:10:44',323.760000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8428,6,6,'2019-08-21 15:10:44',324.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 (8429,6,6,'2019-08-21 15:10:44',324.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 (8430,6,6,'2019-08-21 15:10:44',325.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 (8431,6,6,'2019-08-21 15:10:44',326.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 (8432,6,6,'2019-08-21 15:10:44',326.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 (8433,6,6,'2019-08-21 15:10:44',327.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 (8434,6,6,'2019-08-21 15:10:44',327.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 (8435,6,6,'2019-08-21 15:10:44',328.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 (8436,6,6,'2019-08-21 15:10:44',328.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 (8437,6,6,'2019-08-21 15:10:44',329.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 (8438,6,6,'2019-08-21 15:10:44',330.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 (8439,6,6,'2019-08-21 15:10:44',331.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 (8440,6,6,'2019-08-21 15:10:44',332.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 (8441,6,6,'2019-08-21 15:10:44',332.985000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8442,6,6,'2019-08-21 15:10:44',333.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 (8443,6,6,'2019-08-21 15:10:44',333.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 (8444,6,6,'2019-08-21 15:10:44',334.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 (8445,6,6,'2019-08-21 15:10:44',334.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 (8446,6,6,'2019-08-21 15:10:44',335.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 (8447,6,6,'2019-08-21 15:10:44',336.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 (8448,6,6,'2019-08-21 15:10:44',337.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 (8449,6,6,'2019-08-21 15:10:44',338.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 (8450,6,6,'2019-08-21 15:10:44',339.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 (8451,6,6,'2019-08-21 15:10:44',340.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 (8452,6,6,'2019-08-21 15:10:44',340.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 (8453,6,6,'2019-08-21 15:10:44',341.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 (8454,6,6,'2019-08-21 15:10:44',341.976000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8455,6,6,'2019-08-21 15:10:44',342.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 (8456,6,6,'2019-08-21 15:10:44',342.808000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8457,6,6,'2019-08-21 15:10:44',343.292000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8458,6,6,'2019-08-21 15:10:44',343.607000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8459,6,6,'2019-08-21 15:10:44',344.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 (8460,6,6,'2019-08-21 15:10:44',345.205000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8461,6,6,'2019-08-21 15:10:44',346.071000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8462,6,6,'2019-08-21 15:10:44',347.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 (8463,6,6,'2019-08-21 15:10:44',347.441000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8464,6,6,'2019-08-21 15:10:44',348.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 (8465,6,6,'2019-08-21 15:10:44',349.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 (8466,6,6,'2019-08-21 15:10:44',349.339000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8467,6,6,'2019-08-21 15:10:44',350.000000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8468,6,6,'2019-08-21 15:10:44',350.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 (8469,6,6,'2019-08-21 15:10:44',351.748000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8470,6,6,'2019-08-21 15:10:44',352.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 (8471,6,6,'2019-08-21 15:10:44',352.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 (8472,6,6,'2019-08-21 15:10:44',353.513000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8473,6,6,'2019-08-21 15:10:44',353.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 (8474,6,6,'2019-08-21 15:10:44',354.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 (8475,6,6,'2019-08-21 15:10:44',355.261000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8476,6,6,'2019-08-21 15:10:44',355.578000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8477,6,6,'2019-08-21 15:10:44',356.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 (8478,6,6,'2019-08-21 15:10:44',357.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 (8479,6,6,'2019-08-21 15:10:44',357.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 (8480,6,6,'2019-08-21 15:10:44',358.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 (8481,6,6,'2019-08-21 15:10:44',359.523000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8482,6,6,'2019-08-21 15:10:44',360.322000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8483,6,6,'2019-08-21 15:10:44',361.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 (8484,6,6,'2019-08-21 15:10:44',361.483000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8485,6,6,'2019-08-21 15:10:44',361.954000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8486,6,6,'2019-08-21 15:10:44',362.352000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8487,6,6,'2019-08-21 15:10:44',362.836000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8488,6,6,'2019-08-21 15:10:44',363.686000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8489,6,6,'2019-08-21 15:10:44',364.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 (8490,6,6,'2019-08-21 15:10:44',364.634000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8491,6,6,'2019-08-21 15:10:44',365.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 (8492,6,6,'2019-08-21 15:10:44',366.565000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8493,6,6,'2019-08-21 15:10:44',367.531000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8494,6,6,'2019-08-21 15:10:44',367.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 (8495,6,6,'2019-08-21 15:10:44',368.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 (8496,6,6,'2019-08-21 15:10:44',369.179000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8497,6,6,'2019-08-21 15:10:44',369.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 (8498,6,6,'2019-08-21 15:10:44',370.944000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8499,6,6,'2019-08-21 15:10:44',371.315000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8500,6,6,'2019-08-21 15:10:44',371.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 (8501,6,6,'2019-08-21 15:10:44',372.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 (8502,6,6,'2019-08-21 15:10:44',373.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 (8503,6,6,'2019-08-21 15:10:44',373.791000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8504,6,6,'2019-08-21 15:10:44',374.689000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8505,6,6,'2019-08-21 15:10:44',375.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 (8506,6,6,'2019-08-21 15:10:44',375.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 (8507,6,6,'2019-08-21 15:10:44',376.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 (8508,6,6,'2019-08-21 15:10:44',377.486000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8509,6,6,'2019-08-21 15:10:44',378.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 (8510,6,6,'2019-08-21 15:10:44',379.418000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8511,6,6,'2019-08-21 15:10:44',379.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 (8512,6,6,'2019-08-21 15:10:44',380.200000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8513,6,6,'2019-08-21 15:10:44',380.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 (8514,6,6,'2019-08-21 15:10:44',381.882000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8515,6,6,'2019-08-21 15:10:44',382.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 (8516,6,6,'2019-08-21 15:10:44',383.580000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8517,6,6,'2019-08-21 15:10:44',384.086000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8518,6,6,'2019-08-21 15:10:44',384.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 (8519,6,6,'2019-08-21 15:10:44',384.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 (8520,6,6,'2019-08-21 15:10:44',385.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 (8521,6,6,'2019-08-21 15:10:44',385.690000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8522,6,6,'2019-08-21 15:10:44',386.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 (8523,6,6,'2019-08-21 15:10:44',387.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 (8524,6,6,'2019-08-21 15:10:44',388.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 (8525,6,6,'2019-08-21 15:10:44',388.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 (8526,6,6,'2019-08-21 15:10:44',389.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 (8527,6,6,'2019-08-21 15:10:44',389.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 (8528,6,6,'2019-08-21 15:10:44',390.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 (8529,6,6,'2019-08-21 15:10:44',391.604000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8530,6,6,'2019-08-21 15:10:44',392.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 (8531,6,6,'2019-08-21 15:10:44',393.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 (8532,6,6,'2019-08-21 15:10:44',394.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 (8533,6,6,'2019-08-21 15:10:44',394.715000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8534,6,6,'2019-08-21 15:10:44',395.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 (8535,6,6,'2019-08-21 15:10:44',395.664000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8536,6,6,'2019-08-21 15:10:44',396.149000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8537,6,6,'2019-08-21 15:10:44',397.115000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8538,6,6,'2019-08-21 15:10:44',397.521000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8539,6,6,'2019-08-21 15:10:44',397.947000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8540,6,6,'2019-08-21 15:10:44',398.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 (8541,6,6,'2019-08-21 15:10:44',399.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 (8542,6,6,'2019-08-21 15:10:44',400.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 (8543,6,6,'2019-08-21 15:10:44',401.064000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8544,6,6,'2019-08-21 15:10:44',401.561000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8545,6,6,'2019-08-21 15:10:44',402.359000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8546,6,6,'2019-08-21 15:10:44',403.192000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8547,6,6,'2019-08-21 15:10:44',403.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 (8548,6,6,'2019-08-21 15:10:44',404.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 (8549,6,6,'2019-08-21 15:10:44',404.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 (8550,6,6,'2019-08-21 15:10:44',405.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 (8551,6,6,'2019-08-21 15:10:44',405.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 (8552,6,6,'2019-08-21 15:10:44',406.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 (8553,6,6,'2019-08-21 15:10:44',407.653000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8554,6,6,'2019-08-21 15:10:44',408.553000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8555,6,6,'2019-08-21 15:10:44',408.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 (8556,6,6,'2019-08-21 15:10:44',409.535000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8557,6,6,'2019-08-21 15:10:44',410.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 (8558,6,6,'2019-08-21 15:10:44',410.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 (8559,6,6,'2019-08-21 15:10:44',411.483000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8560,6,6,'2019-08-21 15:10:44',412.365000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8561,6,6,'2019-08-21 15:10:44',412.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 (8562,6,6,'2019-08-21 15:10:44',413.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 (8563,6,6,'2019-08-21 15:10:44',413.733000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8564,6,6,'2019-08-21 15:10:44',414.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 (8565,6,6,'2019-08-21 15:10:44',415.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 (8566,6,6,'2019-08-21 15:10:44',415.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 (8567,6,6,'2019-08-21 15:10:44',416.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 (8568,6,6,'2019-08-21 15:10:44',417.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 (8569,6,6,'2019-08-21 15:10:44',418.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 (8570,6,6,'2019-08-21 15:10:44',418.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 (8571,6,6,'2019-08-21 15:10:44',419.441000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8572,6,6,'2019-08-21 15:10:44',420.207000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8573,6,6,'2019-08-21 15:10:44',421.022000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8574,6,6,'2019-08-21 15:10:44',421.805000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8575,6,6,'2019-08-21 15:10:44',422.122000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8576,6,6,'2019-08-21 15:10:44',422.737000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8577,6,6,'2019-08-21 15:10:44',423.569000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8578,6,6,'2019-08-21 15:10:44',424.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 (8579,6,6,'2019-08-21 15:10:44',425.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 (8580,6,6,'2019-08-21 15:10:44',425.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 (8581,6,6,'2019-08-21 15:10:44',425.900000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8582,6,6,'2019-08-21 15:10:44',426.767000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8583,6,6,'2019-08-21 15:10:44',427.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 (8584,6,6,'2019-08-21 15:10:44',427.731000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8585,6,6,'2019-08-21 15:10:44',428.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 (8586,6,6,'2019-08-21 15:10:44',429.087000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8587,6,6,'2019-08-21 15:10:44',429.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 (8588,6,6,'2019-08-21 15:10:44',430.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 (8589,6,6,'2019-08-21 15:10:44',431.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 (8590,6,6,'2019-08-21 15:10:44',431.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 (8591,6,6,'2019-08-21 15:10:44',432.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 (8592,6,6,'2019-08-21 15:10:44',433.109000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8593,6,6,'2019-08-21 15:10:44',434.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 (8594,6,6,'2019-08-21 15:10:44',435.091000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8595,6,6,'2019-08-21 15:10:44',435.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 (8596,6,6,'2019-08-21 15:10:44',435.989000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8597,6,6,'2019-08-21 15:10:44',436.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 (8598,6,6,'2019-08-21 15:10:44',437.787000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8599,6,6,'2019-08-21 15:10:44',438.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 (8600,6,6,'2019-08-21 15:10:44',438.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 (8601,6,6,'2019-08-21 15:10:44',439.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 (8602,6,6,'2019-08-21 15:10:44',440.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 (8603,6,6,'2019-08-21 15:10:44',440.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 (8604,6,6,'2019-08-21 15:10:44',441.384000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8605,6,6,'2019-08-21 15:10:44',442.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 (8606,6,6,'2019-08-21 15:10:44',442.653000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8607,6,6,'2019-08-21 15:10:44',443.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 (8608,6,6,'2019-08-21 15:10:44',443.931000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8609,6,6,'2019-08-21 15:10:44',444.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 (8610,6,6,'2019-08-21 15:10:44',445.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 (8611,6,6,'2019-08-21 15:10:44',446.645000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8612,6,6,'2019-08-21 15:10:44',446.894000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8613,6,6,'2019-08-21 15:10:44',447.493000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8614,6,6,'2019-08-21 15:10:44',447.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 (8615,6,6,'2019-08-21 15:10:44',448.310000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8616,6,6,'2019-08-21 15:10:44',449.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 (8617,6,6,'2019-08-21 15:10:44',449.925000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8618,6,6,'2019-08-21 15:10:44',450.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 (8619,6,6,'2019-08-21 15:10:44',451.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 (8620,6,6,'2019-08-21 15:10:44',451.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 (8621,6,6,'2019-08-21 15:10:44',452.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 (8622,6,6,'2019-08-21 15:10:44',452.829000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8623,6,6,'2019-08-21 15:10:44',453.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 (8624,6,6,'2019-08-21 15:10:44',454.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 (8625,6,6,'2019-08-21 15:10:44',454.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 (8626,6,6,'2019-08-21 15:10:44',455.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 (8627,6,6,'2019-08-21 15:10:44',455.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 (8628,6,6,'2019-08-21 15:10:44',455.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 (8629,6,6,'2019-08-21 15:10:44',456.800000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8630,6,6,'2019-08-21 15:10:44',457.683000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8631,6,6,'2019-08-21 15:10:44',458.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 (8632,6,6,'2019-08-21 15:10:44',459.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 (8633,6,6,'2019-08-21 15:10:44',460.330000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8634,6,6,'2019-08-21 15:10:44',460.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 (8635,6,6,'2019-08-21 15:10:44',461.328000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8636,6,6,'2019-08-21 15:10:44',462.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 (8637,6,6,'2019-08-21 15:10:44',462.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 (8638,6,6,'2019-08-21 15:10:44',462.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 (8639,6,6,'2019-08-21 15:10:44',463.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 (8640,6,6,'2019-08-21 15:10:44',464.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 (8641,6,6,'2019-08-21 15:10:44',465.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 (8642,6,6,'2019-08-21 15:10:44',466.606000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8643,6,6,'2019-08-21 15:10:44',467.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 (8644,6,6,'2019-08-21 15:10:44',467.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 (8645,6,6,'2019-08-21 15:10:44',468.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 (8646,6,6,'2019-08-21 15:10:44',469.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 (8647,6,6,'2019-08-21 15:10:44',469.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 (8648,6,6,'2019-08-21 15:10:44',470.086000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8649,6,6,'2019-08-21 15:10:44',470.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 (8650,6,6,'2019-08-21 15:10:44',470.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 (8651,6,6,'2019-08-21 15:10:44',471.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 (8652,6,6,'2019-08-21 15:10:44',472.566000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8653,6,6,'2019-08-21 15:10:44',473.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 (8654,6,6,'2019-08-21 15:10:44',473.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 (8655,6,6,'2019-08-21 15:10:44',474.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 (8656,6,6,'2019-08-21 15:10:44',475.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 (8657,6,6,'2019-08-21 15:10:44',476.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 (8658,6,6,'2019-08-21 15:10:44',476.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 (8659,6,6,'2019-08-21 15:10:44',476.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 (8660,6,6,'2019-08-21 15:10:44',477.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 (8661,6,6,'2019-08-21 15:10:44',477.860000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8662,6,6,'2019-08-21 15:10:44',478.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 (8663,6,6,'2019-08-21 15:10:44',479.575000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8664,6,6,'2019-08-21 15:10:44',480.374000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8665,6,6,'2019-08-21 15:10:44',481.273000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8666,6,6,'2019-08-21 15:10:44',481.598000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8667,6,6,'2019-08-21 15:10:44',482.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 (8668,6,6,'2019-08-21 15:10:44',483.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 (8669,6,6,'2019-08-21 15:10:44',483.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 (8670,6,6,'2019-08-21 15:10:44',484.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 (8671,6,6,'2019-08-21 15:10:44',484.920000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8672,6,6,'2019-08-21 15:10:44',485.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 (8673,6,6,'2019-08-21 15:10:44',486.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 (8674,6,6,'2019-08-21 15:10:44',486.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 (8675,6,6,'2019-08-21 15:10:44',487.566000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8676,6,6,'2019-08-21 15:10:44',488.565000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8677,6,6,'2019-08-21 15:10:44',489.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 (8678,6,6,'2019-08-21 15:10:44',489.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 (8679,6,6,'2019-08-21 15:10:44',490.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 (8680,6,6,'2019-08-21 15:10:44',491.279000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8681,6,6,'2019-08-21 15:10:44',491.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 (8682,6,6,'2019-08-21 15:10:44',492.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 (8683,6,6,'2019-08-21 15:10:44',492.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 (8684,6,6,'2019-08-21 15:10:44',492.994000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8685,6,6,'2019-08-21 15:10:44',493.977000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8686,6,6,'2019-08-21 15:10:44',494.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 (8687,6,6,'2019-08-21 15:10:44',495.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 (8688,6,6,'2019-08-21 15:10:44',496.640000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8689,6,6,'2019-08-21 15:10:44',497.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 (8690,6,6,'2019-08-21 15:10:44',498.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 (8691,6,6,'2019-08-21 15:10:44',498.728000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8692,6,6,'2019-08-21 15:10:44',499.154000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8693,6,6,'2019-08-21 15:10:44',499.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 (8694,6,6,'2019-08-21 15:10:44',499.937000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8695,6,6,'2019-08-21 15:10:44',500.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 (8696,6,6,'2019-08-21 15:10:44',501.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 (8697,6,6,'2019-08-21 15:10:44',502.517000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8698,6,6,'2019-08-21 15:10:44',502.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 (8699,6,6,'2019-08-21 15:10:44',503.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 (8700,6,6,'2019-08-21 15:10:44',503.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 (8701,6,6,'2019-08-21 15:10:44',504.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 (8702,6,6,'2019-08-21 15:10:44',505.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 (8703,6,6,'2019-08-21 15:10:44',506.013000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8704,6,6,'2019-08-21 15:10:44',506.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 (8705,6,6,'2019-08-21 15:10:44',507.694000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8706,6,6,'2019-08-21 15:10:44',508.644000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8707,6,6,'2019-08-21 15:10:44',509.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 (8708,6,6,'2019-08-21 15:10:44',510.392000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8709,6,6,'2019-08-21 15:10:44',510.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 (8710,6,6,'2019-08-21 15:10:44',511.190000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8711,6,6,'2019-08-21 15:10:44',511.639000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8712,6,6,'2019-08-21 15:10:44',512.106000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8713,6,6,'2019-08-21 15:10:44',513.072000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8714,6,6,'2019-08-21 15:10:44',513.971000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8715,6,6,'2019-08-21 15:10:44',514.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 (8716,6,6,'2019-08-21 15:10:44',515.669000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8717,6,6,'2019-08-21 15:10:44',516.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 (8718,6,6,'2019-08-21 15:10:44',516.452000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8719,6,6,'2019-08-21 15:10:44',517.060000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8720,6,6,'2019-08-21 15:10:44',517.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 (8721,6,6,'2019-08-21 15:10:44',517.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 (8722,6,6,'2019-08-21 15:10:44',518.316000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8723,6,6,'2019-08-21 15:10:44',519.148000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8724,6,6,'2019-08-21 15:10:44',519.981000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8725,6,6,'2019-08-21 15:10:44',520.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 (8726,6,6,'2019-08-21 15:10:44',521.513000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8727,6,6,'2019-08-21 15:10:44',521.945000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8728,6,6,'2019-08-21 15:10:44',522.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 (8729,6,6,'2019-08-21 15:10:44',523.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 (8730,6,6,'2019-08-21 15:10:44',523.712000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8731,6,6,'2019-08-21 15:10:44',524.110000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8732,6,6,'2019-08-21 15:10:44',524.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 (8733,6,6,'2019-08-21 15:10:44',525.025000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8734,6,6,'2019-08-21 15:10:44',525.941000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8735,6,6,'2019-08-21 15:10:44',526.757000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8736,6,6,'2019-08-21 15:10:44',527.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 (8737,6,6,'2019-08-21 15:10:44',528.538000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8738,6,6,'2019-08-21 15:10:44',528.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 (8739,6,6,'2019-08-21 15:10:44',529.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 (8740,6,6,'2019-08-21 15:10:44',529.930000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8741,6,6,'2019-08-21 15:10:44',530.304000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8742,6,6,'2019-08-21 15:10:44',531.252000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8743,6,6,'2019-08-21 15:10:44',532.252000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8744,6,6,'2019-08-21 15:10:44',533.134000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8745,6,6,'2019-08-21 15:10:44',534.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 (8746,6,6,'2019-08-21 15:10:44',534.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 (8747,6,6,'2019-08-21 15:10:44',535.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 (8748,6,6,'2019-08-21 15:10:44',535.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 (8749,6,6,'2019-08-21 15:10:44',536.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 (8750,6,6,'2019-08-21 15:10:44',537.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 (8751,6,6,'2019-08-21 15:10:44',537.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 (8752,6,6,'2019-08-21 15:10:44',538.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 (8753,6,6,'2019-08-21 15:10:44',539.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 (8754,6,6,'2019-08-21 15:10:44',540.093000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8755,6,6,'2019-08-21 15:10:44',540.388000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8756,6,6,'2019-08-21 15:10:44',540.875000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8757,6,6,'2019-08-21 15:10:44',541.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 (8758,6,6,'2019-08-21 15:10:44',542.022000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8759,6,6,'2019-08-21 15:10:44',542.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 (8760,6,6,'2019-08-21 15:10:44',543.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 (8761,6,6,'2019-08-21 15:10:44',544.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 (8762,6,6,'2019-08-21 15:10:44',545.370000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8763,6,6,'2019-08-21 15:10:44',546.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 (8764,6,6,'2019-08-21 15:10:44',547.218000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8765,6,6,'2019-08-21 15:10:44',547.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 (8766,6,6,'2019-08-21 15:10:44',548.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 (8767,6,6,'2019-08-21 15:10:44',548.463000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8768,6,6,'2019-08-21 15:10:44',548.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 (8769,6,6,'2019-08-21 15:10:44',549.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 (8770,6,6,'2019-08-21 15:10:44',550.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 (8771,6,6,'2019-08-21 15:10:44',551.249000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8772,6,6,'2019-08-21 15:10:44',551.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 (8773,6,6,'2019-08-21 15:10:44',552.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 (8774,6,6,'2019-08-21 15:10:44',553.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 (8775,6,6,'2019-08-21 15:10:44',553.712000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8776,6,6,'2019-08-21 15:10:44',554.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 (8777,6,6,'2019-08-21 15:10:44',555.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 (8778,6,6,'2019-08-21 15:10:44',555.519000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8779,6,6,'2019-08-21 15:10:44',556.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 (8780,6,6,'2019-08-21 15:10:44',557.041000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8781,6,6,'2019-08-21 15:10:44',557.265000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8782,6,6,'2019-08-21 15:10:44',557.956000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8783,6,6,'2019-08-21 15:10:44',558.955000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8784,6,6,'2019-08-21 15:10:44',559.888000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8785,6,6,'2019-08-21 15:10:44',560.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 (8786,6,6,'2019-08-21 15:10:44',561.686000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8787,6,6,'2019-08-21 15:10:44',562.585000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8788,6,6,'2019-08-21 15:10:44',562.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 (8789,6,6,'2019-08-21 15:10:44',563.567000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8790,6,6,'2019-08-21 15:10:44',563.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 (8791,6,6,'2019-08-21 15:10:44',564.482000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8792,6,6,'2019-08-21 15:10:44',565.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 (8793,6,6,'2019-08-21 15:10:44',566.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 (8794,6,6,'2019-08-21 15:10:44',566.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 (8795,6,6,'2019-08-21 15:10:44',566.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 (8796,6,6,'2019-08-21 15:10:44',567.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 (8797,6,6,'2019-08-21 15:10:44',568.157000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8798,6,6,'2019-08-21 15:10:44',568.828000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8799,6,6,'2019-08-21 15:10:44',569.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 (8800,6,6,'2019-08-21 15:10:44',570.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 (8801,6,6,'2019-08-21 15:10:44',571.325000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8802,6,6,'2019-08-21 15:10:44',572.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 (8803,6,6,'2019-08-21 15:10:44',573.023000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8804,6,6,'2019-08-21 15:10:44',573.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 (8805,6,6,'2019-08-21 15:10:44',573.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 (8806,6,6,'2019-08-21 15:10:44',574.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 (8807,6,6,'2019-08-21 15:10:44',574.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 (8808,6,6,'2019-08-21 15:10:44',575.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 (8809,6,6,'2019-08-21 15:10:44',576.142000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8810,6,6,'2019-08-21 15:10:44',576.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 (8811,6,6,'2019-08-21 15:10:44',577.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 (8812,6,6,'2019-08-21 15:10:44',578.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 (8813,6,6,'2019-08-21 15:10:44',578.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 (8814,6,6,'2019-08-21 15:10:44',579.150000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8815,6,6,'2019-08-21 15:10:44',580.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 (8816,6,6,'2019-08-21 15:10:44',597.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 (8817,6,6,'2019-08-21 15:10:44',617.542000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8818,6,6,'2019-08-21 15:10:44',618.100000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8819,6,6,'2019-08-21 15:10:44',618.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 (8820,6,6,'2019-08-21 15:10:44',619.373000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8821,6,6,'2019-08-21 15:10:44',620.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 (8822,6,6,'2019-08-21 15:10:44',620.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 (8823,6,6,'2019-08-21 15:10:44',621.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 (8824,6,6,'2019-08-21 15:10:44',622.087000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8825,6,6,'2019-08-21 15:10:44',623.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 (8826,6,6,'2019-08-21 15:10:44',624.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 (8827,6,6,'2019-08-21 15:10:44',624.834000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8828,6,6,'2019-08-21 15:10:44',625.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 (8829,6,6,'2019-08-21 15:10:44',625.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 (8830,6,6,'2019-08-21 15:10:44',626.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 (8831,6,6,'2019-08-21 15:10:44',627.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 (8832,6,6,'2019-08-21 15:10:44',627.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 (8833,6,6,'2019-08-21 15:10:44',628.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 (8834,6,6,'2019-08-21 15:10:44',629.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 (8835,6,6,'2019-08-21 15:10:44',629.995000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8836,6,6,'2019-08-21 15:10:44',630.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 (8837,6,6,'2019-08-21 15:10:44',631.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 (8838,6,6,'2019-08-21 15:10:44',631.710000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8839,6,6,'2019-08-21 15:10:44',632.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 (8840,6,6,'2019-08-21 15:10:44',632.979000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8841,6,6,'2019-08-21 15:10:44',633.391000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8842,6,6,'2019-08-21 15:10:44',634.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 (8843,6,6,'2019-08-21 15:10:44',634.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 (8844,6,6,'2019-08-21 15:10:44',635.389000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8845,6,6,'2019-08-21 15:10:44',635.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 (8846,6,6,'2019-08-21 15:10:44',636.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 (8847,6,6,'2019-08-21 15:10:44',637.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 (8848,6,6,'2019-08-21 15:10:44',638.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 (8849,6,6,'2019-08-21 15:10:44',639.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 (8850,6,6,'2019-08-21 15:10:44',639.369000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8851,6,6,'2019-08-21 15:10:44',639.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 (8852,6,6,'2019-08-21 15:10:44',640.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 (8853,6,6,'2019-08-21 15:10:44',641.516000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8854,6,6,'2019-08-21 15:10:44',642.432000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8855,6,6,'2019-08-21 15:10:44',642.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 (8856,6,6,'2019-08-21 15:10:44',643.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 (8857,6,6,'2019-08-21 15:10:44',644.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 (8858,6,6,'2019-08-21 15:10:44',644.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 (8859,6,6,'2019-08-21 15:10:44',645.161000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8860,6,6,'2019-08-21 15:10:44',646.044000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8861,6,6,'2019-08-21 15:10:44',646.876000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8862,6,6,'2019-08-21 15:10:44',647.775000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8863,6,6,'2019-08-21 15:10:44',648.558000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8864,6,6,'2019-08-21 15:10:44',648.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 (8865,6,6,'2019-08-21 15:10:44',649.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 (8866,6,6,'2019-08-21 15:10:44',650.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 (8867,6,6,'2019-08-21 15:10:44',651.139000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8868,6,6,'2019-08-21 15:10:44',651.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 (8869,6,6,'2019-08-21 15:10:44',652.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 (8870,6,6,'2019-08-21 15:10:44',652.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 (8871,6,6,'2019-08-21 15:10:44',653.351000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8872,6,6,'2019-08-21 15:10:44',653.569000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8873,6,6,'2019-08-21 15:10:44',654.435000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8874,6,6,'2019-08-21 15:10:44',654.814000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8875,6,6,'2019-08-21 15:10:44',655.217000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8876,6,6,'2019-08-21 15:10:44',656.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 (8877,6,6,'2019-08-21 15:10:44',656.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 (8878,6,6,'2019-08-21 15:10:44',657.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 (8879,6,6,'2019-08-21 15:10:44',658.048000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8880,6,6,'2019-08-21 15:10:44',658.880000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8881,6,6,'2019-08-21 15:10:44',659.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 (8882,6,6,'2019-08-21 15:10:44',660.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 (8883,6,6,'2019-08-21 15:10:44',660.645000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8884,6,6,'2019-08-21 15:10:44',660.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 (8885,6,6,'2019-08-21 15:10:44',661.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 (8886,6,6,'2019-08-21 15:10:44',662.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 (8887,6,6,'2019-08-21 15:10:44',663.158000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8888,6,6,'2019-08-21 15:10:44',663.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 (8889,6,6,'2019-08-21 15:10:44',664.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 (8890,6,6,'2019-08-21 15:10:44',665.272000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8891,6,6,'2019-08-21 15:10:44',665.855000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8892,6,6,'2019-08-21 15:10:44',666.871000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8893,6,6,'2019-08-21 15:10:44',667.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 (8894,6,6,'2019-08-21 15:10:44',668.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 (8895,6,6,'2019-08-21 15:10:44',668.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 (8896,6,6,'2019-08-21 15:10:44',669.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 (8897,6,6,'2019-08-21 15:10:44',670.101000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8898,6,6,'2019-08-21 15:10:44',671.066000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8899,6,6,'2019-08-21 15:10:44',671.865000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8900,6,6,'2019-08-21 15:10:44',672.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 (8901,6,6,'2019-08-21 15:10:44',672.715000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8902,6,6,'2019-08-21 15:10:44',673.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 (8903,6,6,'2019-08-21 15:10:44',674.463000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8904,6,6,'2019-08-21 15:10:44',674.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 (8905,6,6,'2019-08-21 15:10:44',675.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 (8906,6,6,'2019-08-21 15:10:44',676.228000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8907,6,6,'2019-08-21 15:10:44',677.160000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8908,6,6,'2019-08-21 15:10:44',677.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 (8909,6,6,'2019-08-21 15:10:44',678.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 (8910,6,6,'2019-08-21 15:10:44',678.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 (8911,6,6,'2019-08-21 15:10:44',679.395000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8912,6,6,'2019-08-21 15:10:44',679.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 (8913,6,6,'2019-08-21 15:10:44',680.806000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8914,6,6,'2019-08-21 15:10:44',681.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 (8915,6,6,'2019-08-21 15:10:44',681.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 (8916,6,6,'2019-08-21 15:10:44',682.787000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8917,6,6,'2019-08-21 15:10:44',683.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 (8918,6,6,'2019-08-21 15:10:44',683.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 (8919,6,6,'2019-08-21 15:10:44',684.419000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8920,6,6,'2019-08-21 15:10:44',685.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 (8921,6,6,'2019-08-21 15:10:44',686.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 (8922,6,6,'2019-08-21 15:10:44',686.612000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8923,6,6,'2019-08-21 15:10:44',687.149000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8924,6,6,'2019-08-21 15:10:44',688.064000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8925,6,6,'2019-08-21 15:10:44',688.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 (8926,6,6,'2019-08-21 15:10:44',688.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 (8927,6,6,'2019-08-21 15:10:44',689.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 (8928,6,6,'2019-08-21 15:10:44',690.495000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8929,6,6,'2019-08-21 15:10:44',691.461000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8930,6,6,'2019-08-21 15:10:44',692.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 (8931,6,6,'2019-08-21 15:10:44',692.871000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8932,6,6,'2019-08-21 15:10:44',693.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 (8933,6,6,'2019-08-21 15:10:44',693.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 (8934,6,6,'2019-08-21 15:10:44',694.241000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8935,6,6,'2019-08-21 15:10:44',695.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 (8936,6,6,'2019-08-21 15:10:44',696.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 (8937,6,6,'2019-08-21 15:10:44',697.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 (8938,6,6,'2019-08-21 15:10:44',697.505000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8939,6,6,'2019-08-21 15:10:44',697.971000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8940,6,6,'2019-08-21 15:10:44',698.836000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8941,6,6,'2019-08-21 15:10:44',699.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 (8942,6,6,'2019-08-21 15:10:44',700.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 (8943,6,6,'2019-08-21 15:10:44',700.685000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8944,6,6,'2019-08-21 15:10:44',701.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 (8945,6,6,'2019-08-21 15:10:44',702.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 (8946,6,6,'2019-08-21 15:10:44',703.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 (8947,6,6,'2019-08-21 15:10:44',703.531000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8948,6,6,'2019-08-21 15:10:44',703.947000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8949,6,6,'2019-08-21 15:10:44',704.480000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8950,6,6,'2019-08-21 15:10:44',704.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 (8951,6,6,'2019-08-21 15:10:44',705.695000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8952,6,6,'2019-08-21 15:10:44',706.628000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8953,6,6,'2019-08-21 15:10:44',707.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 (8954,6,6,'2019-08-21 15:10:44',707.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 (8955,6,6,'2019-08-21 15:10:44',708.426000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8956,6,6,'2019-08-21 15:10:44',709.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 (8957,6,6,'2019-08-21 15:10:44',710.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 (8958,6,6,'2019-08-21 15:10:44',710.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 (8959,6,6,'2019-08-21 15:10:44',711.254000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8960,6,6,'2019-08-21 15:10:44',711.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 (8961,6,6,'2019-08-21 15:10:44',712.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 (8962,6,6,'2019-08-21 15:10:44',713.337000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8963,6,6,'2019-08-21 15:10:44',713.697000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8964,6,6,'2019-08-21 15:10:44',714.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 (8965,6,6,'2019-08-21 15:10:44',715.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 (8966,6,6,'2019-08-21 15:10:44',715.383000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8967,6,6,'2019-08-21 15:10:44',715.901000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8968,6,6,'2019-08-21 15:10:44',716.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 (8969,6,6,'2019-08-21 15:10:44',717.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 (8970,6,6,'2019-08-21 15:10:44',718.731000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8971,6,6,'2019-08-21 15:10:44',719.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 (8972,6,6,'2019-08-21 15:10:44',719.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 (8973,6,6,'2019-08-21 15:10:44',719.976000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8974,6,6,'2019-08-21 15:10:44',720.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 (8975,6,6,'2019-08-21 15:10:44',721.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 (8976,6,6,'2019-08-21 15:10:44',722.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 (8977,6,6,'2019-08-21 15:10:44',722.977000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8978,6,6,'2019-08-21 15:10:44',723.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 (8979,6,6,'2019-08-21 15:10:44',724.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 (8980,6,6,'2019-08-21 15:10:44',725.013000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8981,6,6,'2019-08-21 15:10:44',725.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 (8982,6,6,'2019-08-21 15:10:44',726.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 (8983,6,6,'2019-08-21 15:10:44',726.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 (8984,6,6,'2019-08-21 15:10:44',727.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 (8985,6,6,'2019-08-21 15:10:44',728.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 (8986,6,6,'2019-08-21 15:10:44',729.336000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8987,6,6,'2019-08-21 15:10:44',730.302000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8988,6,6,'2019-08-21 15:10:44',730.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 (8989,6,6,'2019-08-21 15:10:44',731.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 (8990,6,6,'2019-08-21 15:10:44',732.066000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8991,6,6,'2019-08-21 15:10:44',732.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 (8992,6,6,'2019-08-21 15:10:44',733.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 (8993,6,6,'2019-08-21 15:10:44',733.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 (8994,6,6,'2019-08-21 15:10:44',734.598000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8995,6,6,'2019-08-21 15:10:44',734.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 (8996,6,6,'2019-08-21 15:10:44',735.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 (8997,6,6,'2019-08-21 15:10:44',736.212000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8998,6,6,'2019-08-21 15:10:44',737.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 (8999,6,6,'2019-08-21 15:10:44',737.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 (9000,6,6,'2019-08-21 15:10:44',738.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 (9001,6,6,'2019-08-21 15:10:44',738.893000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9002,6,6,'2019-08-21 15:10:44',739.675000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9003,6,6,'2019-08-21 15:10:44',740.014000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9004,6,6,'2019-08-21 15:10:44',740.558000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9005,6,6,'2019-08-21 15:10:44',741.557000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9006,6,6,'2019-08-21 15:10:44',741.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 (9007,6,6,'2019-08-21 15:10:44',742.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 (9008,6,6,'2019-08-21 15:10:44',742.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 (9009,6,6,'2019-08-21 15:10:44',743.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 (9010,6,6,'2019-08-21 15:10:44',744.270000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9011,6,6,'2019-08-21 15:10:44',744.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 (9012,6,6,'2019-08-21 15:10:44',745.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 (9013,6,6,'2019-08-21 15:10:44',745.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 (9014,6,6,'2019-08-21 15:10:44',746.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 (9015,6,6,'2019-08-21 15:10:44',747.800000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9016,6,6,'2019-08-21 15:10:44',748.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 (9017,6,6,'2019-08-21 15:10:44',748.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 (9018,6,6,'2019-08-21 15:10:44',749.515000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9019,6,6,'2019-08-21 15:10:44',750.297000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9020,6,6,'2019-08-21 15:10:44',750.653000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9021,6,6,'2019-08-21 15:10:44',751.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 (9022,6,6,'2019-08-21 15:10:44',751.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 (9023,6,6,'2019-08-21 15:10:44',752.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 (9024,6,6,'2019-08-21 15:10:44',753.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 (9025,6,6,'2019-08-21 15:10:44',753.793000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9026,6,6,'2019-08-21 15:10:44',754.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 (9027,6,6,'2019-08-21 15:10:44',755.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 (9028,6,6,'2019-08-21 15:10:44',755.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 (9029,6,6,'2019-08-21 15:10:44',756.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 (9030,6,6,'2019-08-21 15:10:44',757.572000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9031,6,6,'2019-08-21 15:10:44',758.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 (9032,6,6,'2019-08-21 15:10:44',759.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 (9033,6,6,'2019-08-21 15:10:44',759.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 (9034,6,6,'2019-08-21 15:10:44',760.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 (9035,6,6,'2019-08-21 15:10:44',760.985000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9036,6,6,'2019-08-21 15:10:44',762.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 (9037,6,6,'2019-08-21 15:10:44',762.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 (9038,6,6,'2019-08-21 15:10:44',762.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 (9039,6,6,'2019-08-21 15:10:44',763.413000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9040,6,6,'2019-08-21 15:10:44',763.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 (9041,6,6,'2019-08-21 15:10:44',764.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 (9042,6,6,'2019-08-21 15:10:44',765.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 (9043,6,6,'2019-08-21 15:10:44',766.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 (9044,6,6,'2019-08-21 15:10:44',766.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 (9045,6,6,'2019-08-21 15:10:44',767.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 (9046,6,6,'2019-08-21 15:10:44',768.360000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9047,6,6,'2019-08-21 15:10:44',768.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 (9048,6,6,'2019-08-21 15:10:44',769.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 (9049,6,6,'2019-08-21 15:10:44',770.125000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9050,6,6,'2019-08-21 15:10:44',770.975000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9051,6,6,'2019-08-21 15:10:44',771.939000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9052,6,6,'2019-08-21 15:10:44',772.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 (9053,6,6,'2019-08-21 15:10:44',773.315000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9054,6,6,'2019-08-21 15:10:44',773.888000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9055,6,6,'2019-08-21 15:10:44',774.315000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9056,6,6,'2019-08-21 15:10:44',774.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 (9057,6,6,'2019-08-21 15:10:44',775.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 (9058,6,6,'2019-08-21 15:10:44',776.451000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9059,6,6,'2019-08-21 15:10:44',777.450000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9060,6,6,'2019-08-21 15:10:44',778.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 (9061,6,6,'2019-08-21 15:10:44',778.857000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9062,6,6,'2019-08-21 15:10:44',779.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 (9063,6,6,'2019-08-21 15:10:44',780.280000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9064,6,6,'2019-08-21 15:10:44',781.047000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9065,6,6,'2019-08-21 15:10:44',781.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 (9066,6,6,'2019-08-21 15:10:44',781.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 (9067,6,6,'2019-08-21 15:10:44',782.944000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9068,6,6,'2019-08-21 15:10:44',783.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 (9069,6,6,'2019-08-21 15:10:44',783.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 (9070,6,6,'2019-08-21 15:10:44',784.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 (9071,6,6,'2019-08-21 15:10:44',784.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 (9072,6,6,'2019-08-21 15:10:44',785.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 (9073,6,6,'2019-08-21 15:10:44',786.474000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9074,6,6,'2019-08-21 15:10:44',787.290000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9075,6,6,'2019-08-21 15:10:44',787.620000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9076,6,6,'2019-08-21 15:10:44',788.172000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9077,6,6,'2019-08-21 15:10:44',789.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 (9078,6,6,'2019-08-21 15:10:44',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 (9079,6,6,'2019-08-21 15:10:44',791.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 (9080,6,6,'2019-08-21 15:10:44',792.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 (9081,6,6,'2019-08-21 15:10:44',792.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 (9082,6,6,'2019-08-21 15:10:44',793.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 (9083,6,6,'2019-08-21 15:10:44',794.049000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9084,6,6,'2019-08-21 15:10:44',794.394000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9085,6,6,'2019-08-21 15:10:44',795.048000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9086,6,6,'2019-08-21 15:10:44',795.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 (9087,6,6,'2019-08-21 15:10:44',796.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 (9088,6,6,'2019-08-21 15:10:44',797.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 (9089,6,6,'2019-08-21 15:10:44',797.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 (9090,6,6,'2019-08-21 15:10:44',798.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 (9091,6,6,'2019-08-21 15:10:44',798.906000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9092,6,6,'2019-08-21 15:10:44',799.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 (9093,6,6,'2019-08-21 15:10:44',799.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 (9094,6,6,'2019-08-21 15:10:44',800.459000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9095,6,6,'2019-08-21 15:10:44',801.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 (9096,6,6,'2019-08-21 15:10:44',802.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 (9097,6,6,'2019-08-21 15:10:44',803.223000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9098,6,6,'2019-08-21 15:10:44',804.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 (9099,6,6,'2019-08-21 15:10:44',804.987000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9100,6,6,'2019-08-21 15:10:44',805.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 (9101,6,6,'2019-08-21 15:10:44',806.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 (9102,6,6,'2019-08-21 15:10:44',806.669000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9103,6,6,'2019-08-21 15:10:44',807.567000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9104,6,6,'2019-08-21 15:10:44',807.900000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9105,6,6,'2019-08-21 15:10:44',808.450000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9106,6,6,'2019-08-21 15:10:44',809.382000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9107,6,6,'2019-08-21 15:10:44',810.165000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9108,6,6,'2019-08-21 15:10:44',810.947000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9109,6,6,'2019-08-21 15:10:44',811.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 (9110,6,6,'2019-08-21 15:10:44',811.779000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9111,6,6,'2019-08-21 15:10:44',812.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 (9112,6,6,'2019-08-21 15:10:44',813.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 (9113,6,6,'2019-08-21 15:10:44',813.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 (9114,6,6,'2019-08-21 15:10:44',814.377000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9115,6,6,'2019-08-21 15:10:44',815.242000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9116,6,6,'2019-08-21 15:10:44',816.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 (9117,6,6,'2019-08-21 15:10:44',817.074000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9118,6,6,'2019-08-21 15:10:44',817.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 (9119,6,6,'2019-08-21 15:10:44',818.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 (9120,6,6,'2019-08-21 15:10:44',818.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 (9121,6,6,'2019-08-21 15:10:44',819.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 (9122,6,6,'2019-08-21 15:10:44',819.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 (9123,6,6,'2019-08-21 15:10:44',820.146000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9124,6,6,'2019-08-21 15:10:44',820.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 (9125,6,6,'2019-08-21 15:10:44',821.469000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9126,6,6,'2019-08-21 15:10:44',822.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 (9127,6,6,'2019-08-21 15:10:44',823.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 (9128,6,6,'2019-08-21 15:10:44',824.282000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9129,6,6,'2019-08-21 15:10:44',824.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 (9130,6,6,'2019-08-21 15:10:44',825.082000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9131,6,6,'2019-08-21 15:10:44',825.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 (9132,6,6,'2019-08-21 15:10:44',826.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 (9133,6,6,'2019-08-21 15:10:44',827.252000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9134,6,6,'2019-08-21 15:10:44',827.862000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9135,6,6,'2019-08-21 15:10:44',828.744000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9136,6,6,'2019-08-21 15:10:44',829.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 (9137,6,6,'2019-08-21 15:10:44',830.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 (9138,6,6,'2019-08-21 15:10:44',830.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 (9139,6,6,'2019-08-21 15:10:44',831.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 (9140,6,6,'2019-08-21 15:10:44',832.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 (9141,6,6,'2019-08-21 15:10:44',833.223000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9142,6,6,'2019-08-21 15:10:44',833.743000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9143,6,6,'2019-08-21 15:10:44',834.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 (9144,6,6,'2019-08-21 15:10:44',835.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 (9145,6,6,'2019-08-21 15:10:44',835.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 (9146,6,6,'2019-08-21 15:10:44',836.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 (9147,6,6,'2019-08-21 15:10:44',837.035000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9148,6,6,'2019-08-21 15:10:44',837.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 (9149,6,6,'2019-08-21 15:10:44',837.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 (9150,6,6,'2019-08-21 15:10:44',838.700000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9151,6,6,'2019-08-21 15:10:44',839.699000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9152,6,6,'2019-08-21 15:10:44',840.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 (9153,6,6,'2019-08-21 15:10:44',840.921000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9154,6,6,'2019-08-21 15:10:44',841.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 (9155,6,6,'2019-08-21 15:10:44',842.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 (9156,6,6,'2019-08-21 15:10:44',842.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 (9157,6,6,'2019-08-21 15:10:44',843.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 (9158,6,6,'2019-08-21 15:10:44',844.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 (9159,6,6,'2019-08-21 15:10:44',844.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 (9160,6,6,'2019-08-21 15:10:44',845.093000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9161,6,6,'2019-08-21 15:10:44',846.042000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9162,6,6,'2019-08-21 15:10:44',846.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 (9163,6,6,'2019-08-21 15:10:44',847.690000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9164,6,6,'2019-08-21 15:10:44',848.689000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9165,6,6,'2019-08-21 15:10:44',849.655000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9166,6,6,'2019-08-21 15:10:44',850.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 (9167,6,6,'2019-08-21 15:10:44',850.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 (9168,6,6,'2019-08-21 15:10:44',851.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 (9169,6,6,'2019-08-21 15:10:44',851.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 (9170,6,6,'2019-08-21 15:10:44',852.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 (9171,6,6,'2019-08-21 15:10:44',853.001000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9172,6,6,'2019-08-21 15:10:44',853.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 (9173,6,6,'2019-08-21 15:10:44',853.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 (9174,6,6,'2019-08-21 15:10:44',854.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 (9175,6,6,'2019-08-21 15:10:44',854.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 (9176,6,6,'2019-08-21 15:10:44',855.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 (9177,6,6,'2019-08-21 15:10:44',856.564000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9178,6,6,'2019-08-21 15:10:44',857.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 (9179,6,6,'2019-08-21 15:10:44',857.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 (9180,6,6,'2019-08-21 15:10:44',858.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 (9181,6,6,'2019-08-21 15:10:44',858.769000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9182,6,6,'2019-08-21 15:10:44',859.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 (9183,6,6,'2019-08-21 15:10:44',860.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 (9184,6,6,'2019-08-21 15:10:44',860.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 (9185,6,6,'2019-08-21 15:10:44',861.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 (9186,6,6,'2019-08-21 15:10:44',862.657000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9187,6,6,'2019-08-21 15:10:44',863.640000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9188,6,6,'2019-08-21 15:10:44',863.978000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9189,6,6,'2019-08-21 15:10:44',864.556000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9190,6,6,'2019-08-21 15:10:44',864.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 (9191,6,6,'2019-08-21 15:10:44',865.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 (9192,6,6,'2019-08-21 15:10:44',866.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 (9193,6,6,'2019-08-21 15:10:44',867.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 (9194,6,6,'2019-08-21 15:10:44',868.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 (9195,6,6,'2019-08-21 15:10:44',869.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 (9196,6,6,'2019-08-21 15:10:44',869.850000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9197,6,6,'2019-08-21 15:10:44',870.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 (9198,6,6,'2019-08-21 15:10:44',870.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 (9199,6,6,'2019-08-21 15:10:44',871.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 (9200,6,6,'2019-08-21 15:10:44',872.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 (9201,6,6,'2019-08-21 15:10:44',872.580000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9202,6,6,'2019-08-21 15:10:44',873.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 (9203,6,6,'2019-08-21 15:10:44',874.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 (9204,6,6,'2019-08-21 15:10:44',874.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 (9205,6,6,'2019-08-21 15:10:44',875.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 (9206,6,6,'2019-08-21 15:10:44',875.876000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9207,6,6,'2019-08-21 15:10:44',876.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 (9208,6,6,'2019-08-21 15:10:44',877.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 (9209,6,6,'2019-08-21 15:10:44',877.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 (9210,6,6,'2019-08-21 15:10:44',878.540000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9211,6,6,'2019-08-21 15:10:44',879.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 (9212,6,6,'2019-08-21 15:10:44',880.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 (9213,6,6,'2019-08-21 15:10:44',881.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 (9214,6,6,'2019-08-21 15:10:44',881.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 (9215,6,6,'2019-08-21 15:10:44',881.820000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9216,6,6,'2019-08-21 15:10:44',882.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 (9217,6,6,'2019-08-21 15:10:44',882.785000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9218,6,6,'2019-08-21 15:10:44',900.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 (9219,6,6,'2019-08-21 15:10:44',921.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 (9220,6,6,'2019-08-21 15:10:44',921.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 (9221,6,6,'2019-08-21 15:10:44',922.093000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9222,6,6,'2019-08-21 15:10:44',922.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 (9223,6,6,'2019-08-21 15:10:44',923.674000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9224,6,6,'2019-08-21 15:10:44',924.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 (9225,6,6,'2019-08-21 15:10:44',924.640000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9226,6,6,'2019-08-21 15:10:44',925.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 (9227,6,6,'2019-08-21 15:10:44',926.471000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9228,6,6,'2019-08-21 15:10:44',926.926000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9229,6,6,'2019-08-21 15:10:44',927.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 (9230,6,6,'2019-08-21 15:10:44',928.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 (9231,6,6,'2019-08-21 15:10:44',928.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 (9232,6,6,'2019-08-21 15:10:44',928.985000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9233,6,6,'2019-08-21 15:10:44',929.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 (9234,6,6,'2019-08-21 15:10:44',930.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 (9235,6,6,'2019-08-21 15:10:44',931.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 (9236,6,6,'2019-08-21 15:10:44',932.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 (9237,6,6,'2019-08-21 15:10:44',932.761000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9238,6,6,'2019-08-21 15:10:44',933.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 (9239,6,6,'2019-08-21 15:10:44',933.649000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9240,6,6,'2019-08-21 15:10:44',934.096000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9241,6,6,'2019-08-21 15:10:44',934.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 (9242,6,6,'2019-08-21 15:10:44',935.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 (9243,6,6,'2019-08-21 15:10:44',936.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 (9244,6,6,'2019-08-21 15:10:44',937.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 (9245,6,6,'2019-08-21 15:10:44',938.725000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9246,6,6,'2019-08-21 15:10:44',939.121000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9247,6,6,'2019-08-21 15:10:44',939.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 (9248,6,6,'2019-08-21 15:10:44',939.989000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9249,6,6,'2019-08-21 15:10:44',940.572000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9250,6,6,'2019-08-21 15:10:44',941.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 (9251,6,6,'2019-08-21 15:10:44',942.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 (9252,6,6,'2019-08-21 15:10:44',943.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 (9253,6,6,'2019-08-21 15:10:44',943.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 (9254,6,6,'2019-08-21 15:10:44',944.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 (9255,6,6,'2019-08-21 15:10:44',944.935000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9256,6,6,'2019-08-21 15:10:44',945.783000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9257,6,6,'2019-08-21 15:10:44',946.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 (9258,6,6,'2019-08-21 15:10:44',946.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 (9259,6,6,'2019-08-21 15:10:44',947.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 (9260,6,6,'2019-08-21 15:10:44',948.186000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9261,6,6,'2019-08-21 15:10:44',948.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 (9262,6,6,'2019-08-21 15:10:44',949.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 (9263,6,6,'2019-08-21 15:10:44',950.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 (9264,6,6,'2019-08-21 15:10:44',951.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 (9265,6,6,'2019-08-21 15:10:44',951.841000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9266,6,6,'2019-08-21 15:10:44',952.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 (9267,6,6,'2019-08-21 15:10:44',953.325000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9268,6,6,'2019-08-21 15:10:44',953.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 (9269,6,6,'2019-08-21 15:10:44',954.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 (9270,6,6,'2019-08-21 15:10:44',955.007000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9271,6,6,'2019-08-21 15:10:44',955.806000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9272,6,6,'2019-08-21 15:10:44',956.222000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9273,6,6,'2019-08-21 15:10:44',956.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 (9274,6,6,'2019-08-21 15:10:44',957.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 (9275,6,6,'2019-08-21 15:10:44',958.386000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9276,6,6,'2019-08-21 15:10:44',959.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 (9277,6,6,'2019-08-21 15:10:44',959.583000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9278,6,6,'2019-08-21 15:10:44',960.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 (9279,6,6,'2019-08-21 15:10:44',961.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 (9280,6,6,'2019-08-21 15:10:44',961.799000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9281,6,6,'2019-08-21 15:10:44',962.798000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9282,6,6,'2019-08-21 15:10:44',963.086000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9283,6,6,'2019-08-21 15:10:44',963.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 (9284,6,6,'2019-08-21 15:10:44',964.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 (9285,6,6,'2019-08-21 15:10:44',964.479000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9286,6,6,'2019-08-21 15:10:44',965.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 (9287,6,6,'2019-08-21 15:10:44',965.640000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9288,6,6,'2019-08-21 15:10:44',966.228000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9289,6,6,'2019-08-21 15:10:44',967.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 (9290,6,6,'2019-08-21 15:10:44',968.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 (9291,6,6,'2019-08-21 15:10:44',968.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 (9292,6,6,'2019-08-21 15:10:44',969.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 (9293,6,6,'2019-08-21 15:10:44',970.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 (9294,6,6,'2019-08-21 15:10:44',970.522000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9295,6,6,'2019-08-21 15:10:44',971.422000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9296,6,6,'2019-08-21 15:10:44',972.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 (9297,6,6,'2019-08-21 15:10:44',972.747000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9298,6,6,'2019-08-21 15:10:44',973.236000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9299,6,6,'2019-08-21 15:10:44',974.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 (9300,6,6,'2019-08-21 15:10:44',975.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 (9301,6,6,'2019-08-21 15:10:44',975.382000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9302,6,6,'2019-08-21 15:10:44',976.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 (9303,6,6,'2019-08-21 15:10:44',976.916000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9304,6,6,'2019-08-21 15:10:44',977.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 (9305,6,6,'2019-08-21 15:10:44',978.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 (9306,6,6,'2019-08-21 15:10:44',978.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 (9307,6,6,'2019-08-21 15:10:44',979.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 (9308,6,6,'2019-08-21 15:10:44',980.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 (9309,6,6,'2019-08-21 15:10:44',981.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 (9310,6,6,'2019-08-21 15:10:44',982.160000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9311,6,6,'2019-08-21 15:10:44',982.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 (9312,6,6,'2019-08-21 15:10:44',983.043000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9313,6,6,'2019-08-21 15:10:44',983.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 (9314,6,6,'2019-08-21 15:10:44',983.925000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9315,6,6,'2019-08-21 15:10:44',984.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 (9316,6,6,'2019-08-21 15:10:44',985.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 (9317,6,6,'2019-08-21 15:10:44',985.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 (9318,6,6,'2019-08-21 15:10:44',986.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 (9319,6,6,'2019-08-21 15:10:44',987.438000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9320,6,6,'2019-08-21 15:10:44',987.808000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9321,6,6,'2019-08-21 15:10:44',988.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 (9322,6,6,'2019-08-21 15:10:44',989.336000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9323,6,6,'2019-08-21 15:10:44',990.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 (9324,6,6,'2019-08-21 15:10:44',991.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 (9325,6,6,'2019-08-21 15:10:44',992.315000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9326,6,6,'2019-08-21 15:10:44',992.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 (9327,6,6,'2019-08-21 15:10:44',993.198000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9328,6,6,'2019-08-21 15:10:44',993.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 (9329,6,6,'2019-08-21 15:10:44',994.147000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9330,6,6,'2019-08-21 15:10:44',995.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 (9331,6,6,'2019-08-21 15:10:44',995.879000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9332,6,6,'2019-08-21 15:10:44',996.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 (9333,6,6,'2019-08-21 15:10:44',997.186000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9334,6,6,'2019-08-21 15:10:44',997.543000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9335,6,6,'2019-08-21 15:10:44',998.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 (9336,6,6,'2019-08-21 15:10:44',999.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 (9337,6,6,'2019-08-21 15:10:44',999.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 (9338,6,6,'2019-08-21 15:10:44',1000.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 (9339,6,6,'2019-08-21 15:10:44',1000.973000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9340,6,6,'2019-08-21 15:10:44',1001.365000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9341,6,6,'2019-08-21 15:10:44',1001.872000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9342,6,6,'2019-08-21 15:10:44',1002.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 (9343,6,6,'2019-08-21 15:10:44',1003.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 (9344,6,6,'2019-08-21 15:10:44',1003.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 (9345,6,6,'2019-08-21 15:10:44',1004.652000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9346,6,6,'2019-08-21 15:10:44',1005.468000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9347,6,6,'2019-08-21 15:10:44',1006.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 (9348,6,6,'2019-08-21 15:10:44',1007.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 (9349,6,6,'2019-08-21 15:10:44',1007.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 (9350,6,6,'2019-08-21 15:10:44',1008.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 (9351,6,6,'2019-08-21 15:10:44',1008.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 (9352,6,6,'2019-08-21 15:10:44',1009.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 (9353,6,6,'2019-08-21 15:10:44',1010.029000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9354,6,6,'2019-08-21 15:10:44',1011.012000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9355,6,6,'2019-08-21 15:10:44',1011.895000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9356,6,6,'2019-08-21 15:10:44',1012.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 (9357,6,6,'2019-08-21 15:10:44',1012.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 (9358,6,6,'2019-08-21 15:10:44',1013.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 (9359,6,6,'2019-08-21 15:10:44',1014.608000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9360,6,6,'2019-08-21 15:10:44',1015.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 (9361,6,6,'2019-08-21 15:10:44',1015.729000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9362,6,6,'2019-08-21 15:10:44',1016.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 (9363,6,6,'2019-08-21 15:10:44',1017.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 (9364,6,6,'2019-08-21 15:10:44',1017.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 (9365,6,6,'2019-08-21 15:10:44',1018.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 (9366,6,6,'2019-08-21 15:10:44',1018.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 (9367,6,6,'2019-08-21 15:10:44',1019.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 (9368,6,6,'2019-08-21 15:10:44',1020.418000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9369,6,6,'2019-08-21 15:10:44',1021.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 (9370,6,6,'2019-08-21 15:10:44',1021.484000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9371,6,6,'2019-08-21 15:10:44',1022.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 (9372,6,6,'2019-08-21 15:10:44',1022.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 (9373,6,6,'2019-08-21 15:10:44',1022.999000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9374,6,6,'2019-08-21 15:10:44',1023.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 (9375,6,6,'2019-08-21 15:10:44',1024.580000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9376,6,6,'2019-08-21 15:10:44',1025.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 (9377,6,6,'2019-08-21 15:10:44',1026.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 (9378,6,6,'2019-08-21 15:10:44',1026.703000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9379,6,6,'2019-08-21 15:10:44',1027.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 (9380,6,6,'2019-08-21 15:10:44',1028.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 (9381,6,6,'2019-08-21 15:10:44',1029.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 (9382,6,6,'2019-08-21 15:10:44',1030.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 (9383,6,6,'2019-08-21 15:10:44',1030.388000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9384,6,6,'2019-08-21 15:10:44',1030.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 (9385,6,6,'2019-08-21 15:10:44',1031.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 (9386,6,6,'2019-08-21 15:10:44',1032.205000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9387,6,6,'2019-08-21 15:10:44',1032.705000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9388,6,6,'2019-08-21 15:10:44',1033.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 (9389,6,6,'2019-08-21 15:10:44',1034.553000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9390,6,6,'2019-08-21 15:10:44',1034.940000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9391,6,6,'2019-08-21 15:10:44',1035.452000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9392,6,6,'2019-08-21 15:10:44',1035.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 (9393,6,6,'2019-08-21 15:10:44',1036.234000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9394,6,6,'2019-08-21 15:10:44',1037.250000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9395,6,6,'2019-08-21 15:10:44',1038.232000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9396,6,6,'2019-08-21 15:10:44',1038.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 (9397,6,6,'2019-08-21 15:10:44',1039.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 (9398,6,6,'2019-08-21 15:10:44',1040.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 (9399,6,6,'2019-08-21 15:10:44',1041.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 (9400,6,6,'2019-08-21 15:10:44',1041.861000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9401,6,6,'2019-08-21 15:10:44',1042.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 (9402,6,6,'2019-08-21 15:10:44',1042.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 (9403,6,6,'2019-08-21 15:10:44',1043.560000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9404,6,6,'2019-08-21 15:10:44',1043.874000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9405,6,6,'2019-08-21 15:10:44',1044.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 (9406,6,6,'2019-08-21 15:10:44',1045.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 (9407,6,6,'2019-08-21 15:10:44',1046.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 (9408,6,6,'2019-08-21 15:10:44',1047.106000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9409,6,6,'2019-08-21 15:10:44',1047.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 (9410,6,6,'2019-08-21 15:10:44',1048.194000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9411,6,6,'2019-08-21 15:10:44',1048.820000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9412,6,6,'2019-08-21 15:10:44',1049.234000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9413,6,6,'2019-08-21 15:10:44',1049.670000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9414,6,6,'2019-08-21 15:10:44',1050.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 (9415,6,6,'2019-08-21 15:10:44',1050.900000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9416,6,6,'2019-08-21 15:10:44',1051.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 (9417,6,6,'2019-08-21 15:10:44',1052.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 (9418,6,6,'2019-08-21 15:10:44',1053.249000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9419,6,6,'2019-08-21 15:10:44',1054.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 (9420,6,6,'2019-08-21 15:10:44',1055.030000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9421,6,6,'2019-08-21 15:10:44',1055.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 (9422,6,6,'2019-08-21 15:10:44',1056.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 (9423,6,6,'2019-08-21 15:10:44',1057.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 (9424,6,6,'2019-08-21 15:10:44',1057.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 (9425,6,6,'2019-08-21 15:10:44',1058.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 (9426,6,6,'2019-08-21 15:10:44',1058.754000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9427,6,6,'2019-08-21 15:10:44',1059.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 (9428,6,6,'2019-08-21 15:10:44',1060.241000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9429,6,6,'2019-08-21 15:10:44',1060.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 (9430,6,6,'2019-08-21 15:10:44',1061.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 (9431,6,6,'2019-08-21 15:10:44',1061.823000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9432,6,6,'2019-08-21 15:10:44',1062.639000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9433,6,6,'2019-08-21 15:10:44',1063.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 (9434,6,6,'2019-08-21 15:10:44',1063.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 (9435,6,6,'2019-08-21 15:10:44',1064.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 (9436,6,6,'2019-08-21 15:10:44',1064.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 (9437,6,6,'2019-08-21 15:10:44',1065.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 (9438,6,6,'2019-08-21 15:10:44',1065.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 (9439,6,6,'2019-08-21 15:10:44',1066.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 (9440,6,6,'2019-08-21 15:10:44',1066.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 (9441,6,6,'2019-08-21 15:10:44',1067.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 (9442,6,6,'2019-08-21 15:10:44',1068.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 (9443,6,6,'2019-08-21 15:10:44',1069.481000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9444,6,6,'2019-08-21 15:10:44',1070.364000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9445,6,6,'2019-08-21 15:10:44',1070.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 (9446,6,6,'2019-08-21 15:10:44',1071.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 (9447,6,6,'2019-08-21 15:10:44',1072.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 (9448,6,6,'2019-08-21 15:10:44',1072.895000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9449,6,6,'2019-08-21 15:10:44',1073.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 (9450,6,6,'2019-08-21 15:10:44',1073.760000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9451,6,6,'2019-08-21 15:10:44',1074.659000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9452,6,6,'2019-08-21 15:10:44',1075.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 (9453,6,6,'2019-08-21 15:10:44',1076.440000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9454,6,6,'2019-08-21 15:10:44',1077.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 (9455,6,6,'2019-08-21 15:10:44',1078.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 (9456,6,6,'2019-08-21 15:10:44',1078.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 (9457,6,6,'2019-08-21 15:10:44',1079.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 (9458,6,6,'2019-08-21 15:10:44',1079.499000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9459,6,6,'2019-08-21 15:10:44',1079.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 (9460,6,6,'2019-08-21 15:10:44',1080.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 (9461,6,6,'2019-08-21 15:10:44',1081.295000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9462,6,6,'2019-08-21 15:10:44',1081.868000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9463,6,6,'2019-08-21 15:10:44',1082.834000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9464,6,6,'2019-08-21 15:10:44',1083.112000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9465,6,6,'2019-08-21 15:10:44',1083.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 (9466,6,6,'2019-08-21 15:10:44',1084.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 (9467,6,6,'2019-08-21 15:10:44',1085.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 (9468,6,6,'2019-08-21 15:10:44',1086.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 (9469,6,6,'2019-08-21 15:10:44',1086.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 (9470,6,6,'2019-08-21 15:10:44',1087.029000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9471,6,6,'2019-08-21 15:10:44',1087.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 (9472,6,6,'2019-08-21 15:10:44',1088.811000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9473,6,6,'2019-08-21 15:10:44',1089.078000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9474,6,6,'2019-08-21 15:10:44',1089.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 (9475,6,6,'2019-08-21 15:10:44',1090.708000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9476,6,6,'2019-08-21 15:10:44',1091.524000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9477,6,6,'2019-08-21 15:10:44',1091.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 (9478,6,6,'2019-08-21 15:10:44',1092.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 (9479,6,6,'2019-08-21 15:10:44',1093.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 (9480,6,6,'2019-08-21 15:10:44',1093.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 (9481,6,6,'2019-08-21 15:10:44',1094.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 (9482,6,6,'2019-08-21 15:10:44',1094.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 (9483,6,6,'2019-08-21 15:10:44',1095.853000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9484,6,6,'2019-08-21 15:10:44',1096.235000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9485,6,6,'2019-08-21 15:10:44',1096.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 (9486,6,6,'2019-08-21 15:10:44',1097.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 (9487,6,6,'2019-08-21 15:10:44',1098.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 (9488,6,6,'2019-08-21 15:10:44',1098.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 (9489,6,6,'2019-08-21 15:10:44',1099.499000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9490,6,6,'2019-08-21 15:10:44',1100.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 (9491,6,6,'2019-08-21 15:10:44',1100.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 (9492,6,6,'2019-08-21 15:10:44',1101.214000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9493,6,6,'2019-08-21 15:10:44',1102.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 (9494,6,6,'2019-08-21 15:10:44',1102.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 (9495,6,6,'2019-08-21 15:10:44',1103.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 (9496,6,6,'2019-08-21 15:10:44',1103.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 (9497,6,6,'2019-08-21 15:10:44',1104.110000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9498,6,6,'2019-08-21 15:10:44',1104.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 (9499,6,6,'2019-08-21 15:10:44',1105.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 (9500,6,6,'2019-08-21 15:10:44',1106.774000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9501,6,6,'2019-08-21 15:10:44',1107.606000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9502,6,6,'2019-08-21 15:10:44',1108.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 (9503,6,6,'2019-08-21 15:10:44',1109.404000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9504,6,6,'2019-08-21 15:10:44',1109.732000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9505,6,6,'2019-08-21 15:10:44',1110.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 (9506,6,6,'2019-08-21 15:10:44',1110.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 (9507,6,6,'2019-08-21 15:10:44',1111.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 (9508,6,6,'2019-08-21 15:10:44',1112.185000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9509,6,6,'2019-08-21 15:10:44',1113.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 (9510,6,6,'2019-08-21 15:10:44',1113.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 (9511,6,6,'2019-08-21 15:10:44',1113.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 (9512,6,6,'2019-08-21 15:10:44',1114.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 (9513,6,6,'2019-08-21 15:10:44',1115.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 (9514,6,6,'2019-08-21 15:10:44',1115.548000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9515,6,6,'2019-08-21 15:10:44',1116.447000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9516,6,6,'2019-08-21 15:10:44',1117.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 (9517,6,6,'2019-08-21 15:10:44',1118.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 (9518,6,6,'2019-08-21 15:10:44',1119.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 (9519,6,6,'2019-08-21 15:10:44',1120.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 (9520,6,6,'2019-08-21 15:10:44',1120.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 (9521,6,6,'2019-08-21 15:10:44',1121.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 (9522,6,6,'2019-08-21 15:10:44',1121.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 (9523,6,6,'2019-08-21 15:10:44',1121.975000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9524,6,6,'2019-08-21 15:10:44',1122.973000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9525,6,6,'2019-08-21 15:10:44',1123.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 (9526,6,6,'2019-08-21 15:10:44',1124.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 (9527,6,6,'2019-08-21 15:10:44',1125.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 (9528,6,6,'2019-08-21 15:10:44',1125.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 (9529,6,6,'2019-08-21 15:10:44',1126.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 (9530,6,6,'2019-08-21 15:10:44',1127.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 (9531,6,6,'2019-08-21 15:10:44',1127.550000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9532,6,6,'2019-08-21 15:10:44',1128.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 (9533,6,6,'2019-08-21 15:10:44',1129.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 (9534,6,6,'2019-08-21 15:10:44',1129.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 (9535,6,6,'2019-08-21 15:10:44',1130.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 (9536,6,6,'2019-08-21 15:10:44',1131.580000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9537,6,6,'2019-08-21 15:10:44',1131.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 (9538,6,6,'2019-08-21 15:10:44',1132.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 (9539,6,6,'2019-08-21 15:10:44',1132.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 (9540,6,6,'2019-08-21 15:10:44',1133.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 (9541,6,6,'2019-08-21 15:10:44',1133.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 (9542,6,6,'2019-08-21 15:10:44',1134.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 (9543,6,6,'2019-08-21 15:10:44',1135.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 (9544,6,6,'2019-08-21 15:10:44',1135.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 (9545,6,6,'2019-08-21 15:10:44',1136.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 (9546,6,6,'2019-08-21 15:10:44',1136.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 (9547,6,6,'2019-08-21 15:10:44',1137.724000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9548,6,6,'2019-08-21 15:10:44',1138.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 (9549,6,6,'2019-08-21 15:10:44',1139.405000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9550,6,6,'2019-08-21 15:10:44',1140.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 (9551,6,6,'2019-08-21 15:10:44',1141.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 (9552,6,6,'2019-08-21 15:10:44',1141.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 (9553,6,6,'2019-08-21 15:10:44',1141.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 (9554,6,6,'2019-08-21 15:10:44',1142.735000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9555,6,6,'2019-08-21 15:10:44',1143.085000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9556,6,6,'2019-08-21 15:10:44',1143.667000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9557,6,6,'2019-08-21 15:10:44',1144.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 (9558,6,6,'2019-08-21 15:10:44',1145.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 (9559,6,6,'2019-08-21 15:10:44',1145.730000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9560,6,6,'2019-08-21 15:10:44',1146.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 (9561,6,6,'2019-08-21 15:10:44',1147.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 (9562,6,6,'2019-08-21 15:10:44',1148.362000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9563,6,6,'2019-08-21 15:10:44',1148.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 (9564,6,6,'2019-08-21 15:10:44',1149.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 (9565,6,6,'2019-08-21 15:10:44',1149.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 (9566,6,6,'2019-08-21 15:10:44',1149.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 (9567,6,6,'2019-08-21 15:10:44',1150.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 (9568,6,6,'2019-08-21 15:10:44',1151.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 (9569,6,6,'2019-08-21 15:10:44',1152.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 (9570,6,6,'2019-08-21 15:10:44',1153.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 (9571,6,6,'2019-08-21 15:10:44',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 (9572,6,6,'2019-08-21 15:10:44',1154.455000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9573,6,6,'2019-08-21 15:10:44',1155.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 (9574,6,6,'2019-08-21 15:10:44',1155.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 (9575,6,6,'2019-08-21 15:10:44',1156.337000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9576,6,6,'2019-08-21 15:10:44',1156.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 (9577,6,6,'2019-08-21 15:10:44',1157.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 (9578,6,6,'2019-08-21 15:10:44',1158.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 (9579,6,6,'2019-08-21 15:10:44',1158.917000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9580,6,6,'2019-08-21 15:10:44',1159.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 (9581,6,6,'2019-08-21 15:10:44',1160.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 (9582,6,6,'2019-08-21 15:10:44',1160.882000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9583,6,6,'2019-08-21 15:10:44',1161.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 (9584,6,6,'2019-08-21 15:10:44',1162.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 (9585,6,6,'2019-08-21 15:10:44',1162.680000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9586,6,6,'2019-08-21 15:10:44',1163.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 (9587,6,6,'2019-08-21 15:10:44',1164.461000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9588,6,6,'2019-08-21 15:10:44',1165.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 (9589,6,6,'2019-08-21 15:10:44',1165.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 (9590,6,6,'2019-08-21 15:10:44',1166.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 (9591,6,6,'2019-08-21 15:10:44',1166.798000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9592,6,6,'2019-08-21 15:10:44',1167.059000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9593,6,6,'2019-08-21 15:10:44',1167.990000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9594,6,6,'2019-08-21 15:10:44',1168.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 (9595,6,6,'2019-08-21 15:10:44',1169.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 (9596,6,6,'2019-08-21 15:10:44',1169.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 (9597,6,6,'2019-08-21 15:10:44',1170.704000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9598,6,6,'2019-08-21 15:10:44',1171.653000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9599,6,6,'2019-08-21 15:10:44',1171.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 (9600,6,6,'2019-08-21 15:10:44',1172.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 (9601,6,6,'2019-08-21 15:10:44',1173.235000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9602,6,6,'2019-08-21 15:10:44',1174.001000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9603,6,6,'2019-08-21 15:10:44',1174.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 (9604,6,6,'2019-08-21 15:10:44',1174.850000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9605,6,6,'2019-08-21 15:10:44',1175.732000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9606,6,6,'2019-08-21 15:10:44',1176.045000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9607,6,6,'2019-08-21 15:10:44',1176.614000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9608,6,6,'2019-08-21 15:10:44',1177.530000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9609,6,6,'2019-08-21 15:10:44',1178.329000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9610,6,6,'2019-08-21 15:10:44',1179.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 (9611,6,6,'2019-08-21 15:10:44',1179.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 (9612,6,6,'2019-08-21 15:10:44',1179.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 (9613,6,6,'2019-08-21 15:10:44',1180.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 (9614,6,6,'2019-08-21 15:10:44',1181.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 (9615,6,6,'2019-08-21 15:10:44',1182.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 (9616,6,6,'2019-08-21 15:10:44',1182.758000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9617,6,6,'2019-08-21 15:10:44',1183.207000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9618,6,6,'2019-08-21 15:10:44',1184.007000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9619,6,6,'2019-08-21 15:10:44',1184.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 (9620,6,6,'2019-08-21 15:10:44',1184.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 (9621,7,7,'2019-08-21 15:10:50',25.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 (9622,7,7,'2019-08-21 15:10:50',26.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 (9623,7,7,'2019-08-21 15:10:50',26.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 (9624,7,7,'2019-08-21 15:10:50',27.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 (9625,7,7,'2019-08-21 15:10:50',27.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 (9626,7,7,'2019-08-21 15:10:50',28.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 (9627,7,7,'2019-08-21 15:10:50',28.933000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9628,7,7,'2019-08-21 15:10:50',29.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 (9629,7,7,'2019-08-21 15:10:50',30.548000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9630,7,7,'2019-08-21 15:10:50',31.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 (9631,7,7,'2019-08-21 15:10:50',32.495000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9632,7,7,'2019-08-21 15:10:50',32.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 (9633,7,7,'2019-08-21 15:10:50',33.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 (9634,7,7,'2019-08-21 15:10:50',34.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 (9635,7,7,'2019-08-21 15:10:50',34.977000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9636,7,7,'2019-08-21 15:10:50',35.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 (9637,7,7,'2019-08-21 15:10:50',35.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 (9638,7,7,'2019-08-21 15:10:50',36.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 (9639,7,7,'2019-08-21 15:10:50',37.656000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9640,7,7,'2019-08-21 15:10:50',38.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 (9641,7,7,'2019-08-21 15:10:50',38.930000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9642,7,7,'2019-08-21 15:10:50',39.488000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9643,7,7,'2019-08-21 15:10:50',39.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 (9644,7,7,'2019-08-21 15:10:50',40.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 (9645,7,7,'2019-08-21 15:10:50',41.286000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9646,7,7,'2019-08-21 15:10:50',42.185000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9647,7,7,'2019-08-21 15:10:50',43.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 (9648,7,7,'2019-08-21 15:10:50',43.473000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9649,7,7,'2019-08-21 15:10:50',44.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 (9650,7,7,'2019-08-21 15:10:50',44.432000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9651,7,7,'2019-08-21 15:10:50',44.999000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9652,7,7,'2019-08-21 15:10:50',45.848000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9653,7,7,'2019-08-21 15:10:50',46.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 (9654,7,7,'2019-08-21 15:10:50',47.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 (9655,7,7,'2019-08-21 15:10:50',48.127000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9656,7,7,'2019-08-21 15:10:50',48.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 (9657,7,7,'2019-08-21 15:10:50',49.086000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9658,7,7,'2019-08-21 15:10:50',49.511000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9659,7,7,'2019-08-21 15:10:50',50.359000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9660,7,7,'2019-08-21 15:10:50',51.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 (9661,7,7,'2019-08-21 15:10:50',52.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 (9662,7,7,'2019-08-21 15:10:50',53.106000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9663,7,7,'2019-08-21 15:10:50',54.089000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9664,7,7,'2019-08-21 15:10:50',54.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 (9665,7,7,'2019-08-21 15:10:50',55.071000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9666,7,7,'2019-08-21 15:10:50',55.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 (9667,7,7,'2019-08-21 15:10:50',56.886000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9668,7,7,'2019-08-21 15:10:50',57.151000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9669,7,7,'2019-08-21 15:10:50',57.734000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9670,7,7,'2019-08-21 15:10:50',58.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 (9671,7,7,'2019-08-21 15:10:50',59.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 (9672,7,7,'2019-08-21 15:10:50',60.282000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9673,7,7,'2019-08-21 15:10:50',60.564000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9674,7,7,'2019-08-21 15:10:50',61.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 (9675,7,7,'2019-08-21 15:10:50',62.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 (9676,7,7,'2019-08-21 15:10:50',62.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 (9677,7,7,'2019-08-21 15:10:50',62.979000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9678,7,7,'2019-08-21 15:10:50',63.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 (9679,7,7,'2019-08-21 15:10:50',64.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 (9680,7,7,'2019-08-21 15:10:50',65.776000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9681,7,7,'2019-08-21 15:10:50',66.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 (9682,7,7,'2019-08-21 15:10:50',66.741000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9683,7,7,'2019-08-21 15:10:50',67.187000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9684,7,7,'2019-08-21 15:10:50',67.591000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9685,7,7,'2019-08-21 15:10:50',68.540000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9686,7,7,'2019-08-21 15:10:50',69.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 (9687,7,7,'2019-08-21 15:10:50',69.670000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9688,7,7,'2019-08-21 15:10:50',70.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 (9689,7,7,'2019-08-21 15:10:50',71.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 (9690,7,7,'2019-08-21 15:10:50',71.952000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9691,7,7,'2019-08-21 15:10:50',72.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 (9692,7,7,'2019-08-21 15:10:50',73.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 (9693,7,7,'2019-08-21 15:10:50',73.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 (9694,7,7,'2019-08-21 15:10:50',74.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 (9695,7,7,'2019-08-21 15:10:50',75.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 (9696,7,7,'2019-08-21 15:10:50',76.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 (9697,7,7,'2019-08-21 15:10:50',77.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 (9698,7,7,'2019-08-21 15:10:50',77.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 (9699,7,7,'2019-08-21 15:10:50',78.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 (9700,7,7,'2019-08-21 15:10:50',78.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 (9701,7,7,'2019-08-21 15:10:50',79.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 (9702,7,7,'2019-08-21 15:10:50',79.533000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9703,7,7,'2019-08-21 15:10:50',80.127000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9704,7,7,'2019-08-21 15:10:50',80.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 (9705,7,7,'2019-08-21 15:10:50',80.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 (9706,7,7,'2019-08-21 15:10:50',81.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 (9707,7,7,'2019-08-21 15:10:50',82.624000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9708,7,7,'2019-08-21 15:10:50',83.606000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9709,7,7,'2019-08-21 15:10:50',84.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 (9710,7,7,'2019-08-21 15:10:50',85.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 (9711,7,7,'2019-08-21 15:10:50',86.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 (9712,7,7,'2019-08-21 15:10:50',86.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 (9713,7,7,'2019-08-21 15:10:50',87.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 (9714,7,7,'2019-08-21 15:10:50',88.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 (9715,7,7,'2019-08-21 15:10:50',88.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 (9716,7,7,'2019-08-21 15:10:50',89.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 (9717,7,7,'2019-08-21 15:10:50',89.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 (9718,7,7,'2019-08-21 15:10:50',90.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 (9719,7,7,'2019-08-21 15:10:50',90.900000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9720,7,7,'2019-08-21 15:10:50',91.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 (9721,7,7,'2019-08-21 15:10:50',92.413000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9722,7,7,'2019-08-21 15:10:50',93.329000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9723,7,7,'2019-08-21 15:10:50',94.312000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9724,7,7,'2019-08-21 15:10:50',94.636000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9725,7,7,'2019-08-21 15:10:50',95.261000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9726,7,7,'2019-08-21 15:10:50',95.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 (9727,7,7,'2019-08-21 15:10:50',96.026000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9728,7,7,'2019-08-21 15:10:50',96.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 (9729,7,7,'2019-08-21 15:10:50',97.857000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9730,7,7,'2019-08-21 15:10:50',98.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 (9731,7,7,'2019-08-21 15:10:50',98.790000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9732,7,7,'2019-08-21 15:10:50',99.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 (9733,7,7,'2019-08-21 15:10:50',100.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 (9734,7,7,'2019-08-21 15:10:50',101.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 (9735,7,7,'2019-08-21 15:10:50',102.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 (9736,7,7,'2019-08-21 15:10:50',103.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 (9737,7,7,'2019-08-21 15:10:50',104.101000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9738,7,7,'2019-08-21 15:10:50',104.367000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9739,7,7,'2019-08-21 15:10:50',104.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 (9740,7,7,'2019-08-21 15:10:50',105.356000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9741,7,7,'2019-08-21 15:10:50',105.982000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9742,7,7,'2019-08-21 15:10:50',106.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 (9743,7,7,'2019-08-21 15:10:50',107.946000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9744,7,7,'2019-08-21 15:10:50',108.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 (9745,7,7,'2019-08-21 15:10:50',109.152000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9746,7,7,'2019-08-21 15:10:50',109.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 (9747,7,7,'2019-08-21 15:10:50',110.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 (9748,7,7,'2019-08-21 15:10:50',110.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 (9749,7,7,'2019-08-21 15:10:50',111.609000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9750,7,7,'2019-08-21 15:10:50',112.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 (9751,7,7,'2019-08-21 15:10:50',113.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 (9752,7,7,'2019-08-21 15:10:50',114.323000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9753,7,7,'2019-08-21 15:10:50',114.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 (9754,7,7,'2019-08-21 15:10:50',115.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 (9755,7,7,'2019-08-21 15:10:50',115.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 (9756,7,7,'2019-08-21 15:10:50',116.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 (9757,7,7,'2019-08-21 15:10:50',117.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 (9758,7,7,'2019-08-21 15:10:50',117.380000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9759,7,7,'2019-08-21 15:10:50',117.936000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9760,7,7,'2019-08-21 15:10:50',118.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 (9761,7,7,'2019-08-21 15:10:50',118.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 (9762,7,7,'2019-08-21 15:10:50',119.700000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9763,7,7,'2019-08-21 15:10:50',120.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 (9764,7,7,'2019-08-21 15:10:50',121.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 (9765,7,7,'2019-08-21 15:10:50',122.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 (9766,7,7,'2019-08-21 15:10:50',122.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 (9767,7,7,'2019-08-21 15:10:50',123.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 (9768,7,7,'2019-08-21 15:10:50',124.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 (9769,7,7,'2019-08-21 15:10:50',124.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 (9770,7,7,'2019-08-21 15:10:50',125.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 (9771,7,7,'2019-08-21 15:10:50',125.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 (9772,7,7,'2019-08-21 15:10:50',126.743000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9773,7,7,'2019-08-21 15:10:50',127.625000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9774,7,7,'2019-08-21 15:10:50',127.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 (9775,7,7,'2019-08-21 15:10:50',128.541000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9776,7,7,'2019-08-21 15:10:50',129.374000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9777,7,7,'2019-08-21 15:10:50',129.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 (9778,7,7,'2019-08-21 15:10:50',130.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 (9779,7,7,'2019-08-21 15:10:50',131.271000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9780,7,7,'2019-08-21 15:10:50',132.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 (9781,7,7,'2019-08-21 15:10:50',133.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 (9782,7,7,'2019-08-21 15:10:50',134.052000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9783,7,7,'2019-08-21 15:10:50',134.900000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9784,7,7,'2019-08-21 15:10:50',135.732000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9785,7,7,'2019-08-21 15:10:50',136.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 (9786,7,7,'2019-08-21 15:10:50',136.985000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9787,7,7,'2019-08-21 15:10:50',137.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 (9788,7,7,'2019-08-21 15:10:50',137.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 (9789,7,7,'2019-08-21 15:10:50',138.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 (9790,7,7,'2019-08-21 15:10:50',139.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 (9791,7,7,'2019-08-21 15:10:50',139.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 (9792,7,7,'2019-08-21 15:10:50',140.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 (9793,7,7,'2019-08-21 15:10:50',141.377000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9794,7,7,'2019-08-21 15:10:50',142.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 (9795,7,7,'2019-08-21 15:10:50',143.108000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9796,7,7,'2019-08-21 15:10:50',143.436000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9797,7,7,'2019-08-21 15:10:50',144.023000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9798,7,7,'2019-08-21 15:10:50',144.823000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9799,7,7,'2019-08-21 15:10:50',145.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 (9800,7,7,'2019-08-21 15:10:50',146.091000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9801,7,7,'2019-08-21 15:10:50',146.638000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9802,7,7,'2019-08-21 15:10:50',147.470000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9803,7,7,'2019-08-21 15:10:50',148.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 (9804,7,7,'2019-08-21 15:10:50',148.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 (9805,7,7,'2019-08-21 15:10:50',149.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 (9806,7,7,'2019-08-21 15:10:50',150.001000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9807,7,7,'2019-08-21 15:10:50',150.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 (9808,7,7,'2019-08-21 15:10:50',151.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 (9809,7,7,'2019-08-21 15:10:50',152.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 (9810,7,7,'2019-08-21 15:10:50',152.914000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9811,7,7,'2019-08-21 15:10:50',153.764000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9812,7,7,'2019-08-21 15:10:50',154.157000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9813,7,7,'2019-08-21 15:10:50',154.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 (9814,7,7,'2019-08-21 15:10:50',155.495000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9815,7,7,'2019-08-21 15:10:50',155.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 (9816,7,7,'2019-08-21 15:10:50',156.261000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9817,7,7,'2019-08-21 15:10:50',156.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 (9818,7,7,'2019-08-21 15:10:50',157.143000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9819,7,7,'2019-08-21 15:10:50',158.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 (9820,7,7,'2019-08-21 15:10:50',158.957000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9821,7,7,'2019-08-21 15:10:50',159.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 (9822,7,7,'2019-08-21 15:10:50',160.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 (9823,7,7,'2019-08-21 15:10:50',161.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 (9824,7,7,'2019-08-21 15:10:50',161.838000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9825,7,7,'2019-08-21 15:10:50',162.653000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9826,7,7,'2019-08-21 15:10:50',163.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 (9827,7,7,'2019-08-21 15:10:50',164.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 (9828,7,7,'2019-08-21 15:10:50',164.575000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9829,7,7,'2019-08-21 15:10:50',165.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 (9830,7,7,'2019-08-21 15:10:50',165.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 (9831,7,7,'2019-08-21 15:10:50',166.849000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9832,7,7,'2019-08-21 15:10:50',167.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 (9833,7,7,'2019-08-21 15:10:50',167.765000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9834,7,7,'2019-08-21 15:10:50',168.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 (9835,7,7,'2019-08-21 15:10:50',169.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 (9836,7,7,'2019-08-21 15:10:50',169.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 (9837,7,7,'2019-08-21 15:10:50',170.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 (9838,7,7,'2019-08-21 15:10:50',171.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 (9839,7,7,'2019-08-21 15:10:50',171.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 (9840,7,7,'2019-08-21 15:10:50',171.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 (9841,7,7,'2019-08-21 15:10:50',172.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 (9842,7,7,'2019-08-21 15:10:50',172.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 (9843,7,7,'2019-08-21 15:10:50',173.908000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9844,7,7,'2019-08-21 15:10:50',174.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 (9845,7,7,'2019-08-21 15:10:50',175.689000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9846,7,7,'2019-08-21 15:10:50',176.639000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9847,7,7,'2019-08-21 15:10:50',177.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 (9848,7,7,'2019-08-21 15:10:50',177.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 (9849,7,7,'2019-08-21 15:10:50',178.437000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9850,7,7,'2019-08-21 15:10:50',179.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 (9851,7,7,'2019-08-21 15:10:50',179.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 (9852,7,7,'2019-08-21 15:10:50',180.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 (9853,7,7,'2019-08-21 15:10:50',181.134000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9854,7,7,'2019-08-21 15:10:50',181.982000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9855,7,7,'2019-08-21 15:10:50',182.403000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9856,7,7,'2019-08-21 15:10:50',182.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 (9857,7,7,'2019-08-21 15:10:50',183.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 (9858,7,7,'2019-08-21 15:10:50',184.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 (9859,7,7,'2019-08-21 15:10:50',185.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 (9860,7,7,'2019-08-21 15:10:50',185.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 (9861,7,7,'2019-08-21 15:10:50',186.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 (9862,7,7,'2019-08-21 15:10:50',187.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 (9863,7,7,'2019-08-21 15:10:50',187.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 (9864,7,7,'2019-08-21 15:10:50',188.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 (9865,7,7,'2019-08-21 15:10:50',189.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 (9866,7,7,'2019-08-21 15:10:50',189.624000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9867,7,7,'2019-08-21 15:10:50',189.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 (9868,7,7,'2019-08-21 15:10:50',190.590000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9869,7,7,'2019-08-21 15:10:50',191.438000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9870,7,7,'2019-08-21 15:10:50',192.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 (9871,7,7,'2019-08-21 15:10:50',192.629000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9872,7,7,'2019-08-21 15:10:50',193.187000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9873,7,7,'2019-08-21 15:10:50',193.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 (9874,7,7,'2019-08-21 15:10:50',193.970000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9875,7,7,'2019-08-21 15:10:50',194.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 (9876,7,7,'2019-08-21 15:10:50',195.617000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9877,7,7,'2019-08-21 15:10:50',196.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 (9878,7,7,'2019-08-21 15:10:50',197.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 (9879,7,7,'2019-08-21 15:10:50',198.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 (9880,7,7,'2019-08-21 15:10:50',199.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 (9881,7,7,'2019-08-21 15:10:50',199.776000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9882,7,7,'2019-08-21 15:10:50',200.412000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9883,7,7,'2019-08-21 15:10:50',201.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 (9884,7,7,'2019-08-21 15:10:50',201.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 (9885,7,7,'2019-08-21 15:10:50',202.094000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9886,7,7,'2019-08-21 15:10:50',202.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 (9887,7,7,'2019-08-21 15:10:50',203.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 (9888,7,7,'2019-08-21 15:10:50',203.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 (9889,7,7,'2019-08-21 15:10:50',204.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 (9890,7,7,'2019-08-21 15:10:50',204.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 (9891,7,7,'2019-08-21 15:10:50',205.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 (9892,7,7,'2019-08-21 15:10:50',206.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 (9893,7,7,'2019-08-21 15:10:50',207.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 (9894,7,7,'2019-08-21 15:10:50',208.014000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9895,7,7,'2019-08-21 15:10:50',208.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 (9896,7,7,'2019-08-21 15:10:50',209.419000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9897,7,7,'2019-08-21 15:10:50',210.185000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9898,7,7,'2019-08-21 15:10:50',211.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 (9899,7,7,'2019-08-21 15:10:50',211.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 (9900,7,7,'2019-08-21 15:10:50',212.000000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9901,7,7,'2019-08-21 15:10:50',212.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 (9902,7,7,'2019-08-21 15:10:50',213.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 (9903,7,7,'2019-08-21 15:10:50',213.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 (9904,7,7,'2019-08-21 15:10:50',214.580000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9905,7,7,'2019-08-21 15:10:50',215.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 (9906,7,7,'2019-08-21 15:10:50',216.395000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9907,7,7,'2019-08-21 15:10:50',216.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 (9908,7,7,'2019-08-21 15:10:50',217.360000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9909,7,7,'2019-08-21 15:10:50',218.359000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9910,7,7,'2019-08-21 15:10:50',219.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 (9911,7,7,'2019-08-21 15:10:50',219.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 (9912,7,7,'2019-08-21 15:10:50',220.240000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9913,7,7,'2019-08-21 15:10:50',220.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 (9914,7,7,'2019-08-21 15:10:50',221.007000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9915,7,7,'2019-08-21 15:10:50',221.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 (9916,7,7,'2019-08-21 15:10:50',222.705000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9917,7,7,'2019-08-21 15:10:50',223.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 (9918,7,7,'2019-08-21 15:10:50',224.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 (9919,7,7,'2019-08-21 15:10:50',225.352000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9920,7,7,'2019-08-21 15:10:50',226.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 (9921,7,7,'2019-08-21 15:10:50',226.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 (9922,7,7,'2019-08-21 15:10:50',227.315000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9923,7,7,'2019-08-21 15:10:50',227.882000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9924,7,7,'2019-08-21 15:10:50',228.153000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9925,7,7,'2019-08-21 15:10:50',228.682000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9926,7,7,'2019-08-21 15:10:50',229.597000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9927,7,7,'2019-08-21 15:10:50',229.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 (9928,7,7,'2019-08-21 15:10:50',230.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 (9929,7,7,'2019-08-21 15:10:50',231.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 (9930,7,7,'2019-08-21 15:10:50',232.145000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9931,7,7,'2019-08-21 15:10:50',233.127000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9932,7,7,'2019-08-21 15:10:50',233.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 (9933,7,7,'2019-08-21 15:10:50',233.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 (9934,7,7,'2019-08-21 15:10:50',234.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 (9935,7,7,'2019-08-21 15:10:50',235.220000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9936,7,7,'2019-08-21 15:10:50',235.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 (9937,7,7,'2019-08-21 15:10:50',236.889000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9938,7,7,'2019-08-21 15:10:50',237.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 (9939,7,7,'2019-08-21 15:10:50',237.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 (9940,7,7,'2019-08-21 15:10:50',238.620000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9941,7,7,'2019-08-21 15:10:50',239.403000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9942,7,7,'2019-08-21 15:10:50',240.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 (9943,7,7,'2019-08-21 15:10:50',241.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 (9944,7,7,'2019-08-21 15:10:50',241.499000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9945,7,7,'2019-08-21 15:10:50',242.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 (9946,7,7,'2019-08-21 15:10:50',242.327000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9947,7,7,'2019-08-21 15:10:50',242.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 (9948,7,7,'2019-08-21 15:10:50',243.765000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9949,7,7,'2019-08-21 15:10:50',244.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 (9950,7,7,'2019-08-21 15:10:50',245.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 (9951,7,7,'2019-08-21 15:10:50',246.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 (9952,7,7,'2019-08-21 15:10:50',247.228000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9953,7,7,'2019-08-21 15:10:50',247.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 (9954,7,7,'2019-08-21 15:10:50',248.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 (9955,7,7,'2019-08-21 15:10:50',248.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 (9956,7,7,'2019-08-21 15:10:50',249.109000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9957,7,7,'2019-08-21 15:10:50',249.975000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9958,7,7,'2019-08-21 15:10:50',250.808000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9959,7,7,'2019-08-21 15:10:50',251.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 (9960,7,7,'2019-08-21 15:10:50',251.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 (9961,7,7,'2019-08-21 15:10:50',252.639000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9962,7,7,'2019-08-21 15:10:50',253.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 (9963,7,7,'2019-08-21 15:10:50',254.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 (9964,7,7,'2019-08-21 15:10:50',254.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 (9965,7,7,'2019-08-21 15:10:50',255.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 (9966,7,7,'2019-08-21 15:10:50',256.019000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9967,7,7,'2019-08-21 15:10:50',256.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 (9968,7,7,'2019-08-21 15:10:50',256.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 (9969,7,7,'2019-08-21 15:10:50',257.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 (9970,7,7,'2019-08-21 15:10:50',258.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 (9971,7,7,'2019-08-21 15:10:50',259.024000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9972,7,7,'2019-08-21 15:10:50',259.697000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9973,7,7,'2019-08-21 15:10:50',260.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 (9974,7,7,'2019-08-21 15:10:50',261.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 (9975,7,7,'2019-08-21 15:10:50',262.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 (9976,7,7,'2019-08-21 15:10:50',263.160000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9977,7,7,'2019-08-21 15:10:50',263.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 (9978,7,7,'2019-08-21 15:10:50',264.159000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9979,7,7,'2019-08-21 15:10:50',264.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 (9980,7,7,'2019-08-21 15:10:50',264.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 (9981,7,7,'2019-08-21 15:10:50',265.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 (9982,7,7,'2019-08-21 15:10:50',266.673000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9983,7,7,'2019-08-21 15:10:50',267.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 (9984,7,7,'2019-08-21 15:10:50',267.969000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9985,7,7,'2019-08-21 15:10:50',268.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 (9986,7,7,'2019-08-21 15:10:50',269.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 (9987,7,7,'2019-08-21 15:10:50',270.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 (9988,7,7,'2019-08-21 15:10:50',270.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 (9989,7,7,'2019-08-21 15:10:50',270.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 (9990,7,7,'2019-08-21 15:10:50',271.651000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9991,7,7,'2019-08-21 15:10:50',272.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 (9992,7,7,'2019-08-21 15:10:50',273.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 (9993,7,7,'2019-08-21 15:10:50',273.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 (9994,7,7,'2019-08-21 15:10:50',274.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 (9995,7,7,'2019-08-21 15:10:50',274.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 (9996,7,7,'2019-08-21 15:10:50',275.048000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9997,7,7,'2019-08-21 15:10:50',275.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 (9998,7,7,'2019-08-21 15:10:50',276.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 (9999,7,7,'2019-08-21 15:10:50',277.216000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10000,7,7,'2019-08-21 15:10:50',277.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 (10001,7,7,'2019-08-21 15:10:50',278.527000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10002,7,7,'2019-08-21 15:10:50',278.811000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10003,7,7,'2019-08-21 15:10:50',279.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 (10004,7,7,'2019-08-21 15:10:50',280.342000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10005,7,7,'2019-08-21 15:10:50',281.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 (10006,7,7,'2019-08-21 15:10:50',282.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 (10007,7,7,'2019-08-21 15:10:50',283.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 (10008,7,7,'2019-08-21 15:10:50',283.838000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10009,7,7,'2019-08-21 15:10:50',284.231000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10010,7,7,'2019-08-21 15:10:50',284.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 (10011,7,7,'2019-08-21 15:10:50',285.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 (10012,7,7,'2019-08-21 15:10:50',285.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 (10013,7,7,'2019-08-21 15:10:50',286.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 (10014,7,7,'2019-08-21 15:10:50',287.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 (10015,7,7,'2019-08-21 15:10:50',287.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 (10016,7,7,'2019-08-21 15:10:50',288.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 (10017,7,7,'2019-08-21 15:10:50',289.099000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10018,7,7,'2019-08-21 15:10:50',289.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 (10019,7,7,'2019-08-21 15:10:50',290.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 (10020,7,7,'2019-08-21 15:10:50',291.066000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10021,7,7,'2019-08-21 15:10:50',303.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 (10022,7,7,'2019-08-21 15:10:50',327.599000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10023,7,7,'2019-08-21 15:10:50',327.987000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10024,7,7,'2019-08-21 15:10:50',328.480000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10025,7,7,'2019-08-21 15:10:50',329.496000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10026,7,7,'2019-08-21 15:10:50',329.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 (10027,7,7,'2019-08-21 15:10:50',330.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 (10028,7,7,'2019-08-21 15:10:50',331.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 (10029,7,7,'2019-08-21 15:10:50',331.977000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10030,7,7,'2019-08-21 15:10:50',332.893000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10031,7,7,'2019-08-21 15:10:50',333.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 (10032,7,7,'2019-08-21 15:10:50',334.176000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10033,7,7,'2019-08-21 15:10:50',334.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 (10034,7,7,'2019-08-21 15:10:50',335.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 (10035,7,7,'2019-08-21 15:10:50',336.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 (10036,7,7,'2019-08-21 15:10:50',336.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 (10037,7,7,'2019-08-21 15:10:50',337.388000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10038,7,7,'2019-08-21 15:10:50',338.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 (10039,7,7,'2019-08-21 15:10:50',339.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 (10040,7,7,'2019-08-21 15:10:50',339.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 (10041,7,7,'2019-08-21 15:10:50',340.750000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10042,7,7,'2019-08-21 15:10:50',341.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 (10043,7,7,'2019-08-21 15:10:50',341.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 (10044,7,7,'2019-08-21 15:10:50',342.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 (10045,7,7,'2019-08-21 15:10:50',342.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 (10046,7,7,'2019-08-21 15:10:50',343.230000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10047,7,7,'2019-08-21 15:10:50',343.997000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10048,7,7,'2019-08-21 15:10:50',344.341000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10049,7,7,'2019-08-21 15:10:50',344.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 (10050,7,7,'2019-08-21 15:10:50',345.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 (10051,7,7,'2019-08-21 15:10:50',346.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 (10052,7,7,'2019-08-21 15:10:50',347.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 (10053,7,7,'2019-08-21 15:10:50',347.626000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10054,7,7,'2019-08-21 15:10:50',348.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 (10055,7,7,'2019-08-21 15:10:50',349.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 (10056,7,7,'2019-08-21 15:10:50',350.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 (10057,7,7,'2019-08-21 15:10:50',350.297000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10058,7,7,'2019-08-21 15:10:50',350.956000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10059,7,7,'2019-08-21 15:10:50',351.738000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10060,7,7,'2019-08-21 15:10:50',352.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 (10061,7,7,'2019-08-21 15:10:50',352.604000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10062,7,7,'2019-08-21 15:10:50',353.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 (10063,7,7,'2019-08-21 15:10:50',353.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 (10064,7,7,'2019-08-21 15:10:50',354.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 (10065,7,7,'2019-08-21 15:10:50',355.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 (10066,7,7,'2019-08-21 15:10:50',356.050000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10067,7,7,'2019-08-21 15:10:50',356.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 (10068,7,7,'2019-08-21 15:10:50',356.833000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10069,7,7,'2019-08-21 15:10:50',357.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 (10070,7,7,'2019-08-21 15:10:50',358.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 (10071,7,7,'2019-08-21 15:10:50',359.380000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10072,7,7,'2019-08-21 15:10:50',360.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 (10073,7,7,'2019-08-21 15:10:50',360.583000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10074,7,7,'2019-08-21 15:10:50',361.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 (10075,7,7,'2019-08-21 15:10:50',361.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 (10076,7,7,'2019-08-21 15:10:50',362.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 (10077,7,7,'2019-08-21 15:10:50',363.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 (10078,7,7,'2019-08-21 15:10:50',363.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 (10079,7,7,'2019-08-21 15:10:50',364.841000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10080,7,7,'2019-08-21 15:10:50',365.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 (10081,7,7,'2019-08-21 15:10:50',366.605000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10082,7,7,'2019-08-21 15:10:50',367.555000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10083,7,7,'2019-08-21 15:10:50',367.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 (10084,7,7,'2019-08-21 15:10:50',368.486000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10085,7,7,'2019-08-21 15:10:50',368.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 (10086,7,7,'2019-08-21 15:10:50',369.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 (10087,7,7,'2019-08-21 15:10:50',369.709000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10088,7,7,'2019-08-21 15:10:50',370.268000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10089,7,7,'2019-08-21 15:10:50',371.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 (10090,7,7,'2019-08-21 15:10:50',372.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 (10091,7,7,'2019-08-21 15:10:50',372.998000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10092,7,7,'2019-08-21 15:10:50',373.343000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10093,7,7,'2019-08-21 15:10:50',373.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 (10094,7,7,'2019-08-21 15:10:50',374.863000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10095,7,7,'2019-08-21 15:10:50',375.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 (10096,7,7,'2019-08-21 15:10:50',376.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 (10097,7,7,'2019-08-21 15:10:50',377.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 (10098,7,7,'2019-08-21 15:10:50',377.977000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10099,7,7,'2019-08-21 15:10:50',378.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 (10100,7,7,'2019-08-21 15:10:50',379.087000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10101,7,7,'2019-08-21 15:10:50',379.475000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10102,7,7,'2019-08-21 15:10:50',380.341000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10103,7,7,'2019-08-21 15:10:50',381.355000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10104,7,7,'2019-08-21 15:10:50',382.205000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10105,7,7,'2019-08-21 15:10:50',383.037000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10106,7,7,'2019-08-21 15:10:50',383.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 (10107,7,7,'2019-08-21 15:10:50',384.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 (10108,7,7,'2019-08-21 15:10:50',384.853000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10109,7,7,'2019-08-21 15:10:50',385.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 (10110,7,7,'2019-08-21 15:10:50',385.784000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10111,7,7,'2019-08-21 15:10:50',386.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 (10112,7,7,'2019-08-21 15:10:50',386.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 (10113,7,7,'2019-08-21 15:10:50',387.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 (10114,7,7,'2019-08-21 15:10:50',387.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 (10115,7,7,'2019-08-21 15:10:50',388.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 (10116,7,7,'2019-08-21 15:10:50',389.330000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10117,7,7,'2019-08-21 15:10:50',390.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 (10118,7,7,'2019-08-21 15:10:50',390.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 (10119,7,7,'2019-08-21 15:10:50',391.828000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10120,7,7,'2019-08-21 15:10:50',392.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 (10121,7,7,'2019-08-21 15:10:50',392.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 (10122,7,7,'2019-08-21 15:10:50',393.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 (10123,7,7,'2019-08-21 15:10:50',394.658000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10124,7,7,'2019-08-21 15:10:50',395.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 (10125,7,7,'2019-08-21 15:10:50',395.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 (10126,7,7,'2019-08-21 15:10:50',396.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 (10127,7,7,'2019-08-21 15:10:50',397.505000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10128,7,7,'2019-08-21 15:10:50',398.504000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10129,7,7,'2019-08-21 15:10:50',398.802000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10130,7,7,'2019-08-21 15:10:50',399.287000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10131,7,7,'2019-08-21 15:10:50',400.136000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10132,7,7,'2019-08-21 15:10:50',401.001000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10133,7,7,'2019-08-21 15:10:50',401.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 (10134,7,7,'2019-08-21 15:10:50',401.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 (10135,7,7,'2019-08-21 15:10:50',402.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 (10136,7,7,'2019-08-21 15:10:50',403.072000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10137,7,7,'2019-08-21 15:10:50',403.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 (10138,7,7,'2019-08-21 15:10:50',404.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 (10139,7,7,'2019-08-21 15:10:50',405.663000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10140,7,7,'2019-08-21 15:10:50',405.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 (10141,7,7,'2019-08-21 15:10:50',406.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 (10142,7,7,'2019-08-21 15:10:50',407.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 (10143,7,7,'2019-08-21 15:10:50',408.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 (10144,7,7,'2019-08-21 15:10:50',409.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 (10145,7,7,'2019-08-21 15:10:50',409.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 (10146,7,7,'2019-08-21 15:10:50',410.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 (10147,7,7,'2019-08-21 15:10:50',411.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 (10148,7,7,'2019-08-21 15:10:50',411.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 (10149,7,7,'2019-08-21 15:10:50',411.873000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10150,7,7,'2019-08-21 15:10:50',412.771000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10151,7,7,'2019-08-21 15:10:50',413.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 (10152,7,7,'2019-08-21 15:10:50',413.704000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10153,7,7,'2019-08-21 15:10:50',414.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 (10154,7,7,'2019-08-21 15:10:50',415.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 (10155,7,7,'2019-08-21 15:10:50',416.201000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10156,7,7,'2019-08-21 15:10:50',417.084000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10157,7,7,'2019-08-21 15:10:50',417.376000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10158,7,7,'2019-08-21 15:10:50',417.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 (10159,7,7,'2019-08-21 15:10:50',418.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 (10160,7,7,'2019-08-21 15:10:50',419.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 (10161,7,7,'2019-08-21 15:10:50',420.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 (10162,7,7,'2019-08-21 15:10:50',420.809000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10163,7,7,'2019-08-21 15:10:50',421.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 (10164,7,7,'2019-08-21 15:10:50',421.646000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10165,7,7,'2019-08-21 15:10:50',422.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 (10166,7,7,'2019-08-21 15:10:50',423.110000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10167,7,7,'2019-08-21 15:10:50',423.413000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10168,7,7,'2019-08-21 15:10:50',423.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 (10169,7,7,'2019-08-21 15:10:50',424.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 (10170,7,7,'2019-08-21 15:10:50',425.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 (10171,7,7,'2019-08-21 15:10:50',425.841000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10172,7,7,'2019-08-21 15:10:50',426.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 (10173,7,7,'2019-08-21 15:10:50',427.855000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10174,7,7,'2019-08-21 15:10:50',428.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 (10175,7,7,'2019-08-21 15:10:50',429.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 (10176,7,7,'2019-08-21 15:10:50',429.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 (10177,7,7,'2019-08-21 15:10:50',430.253000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10178,7,7,'2019-08-21 15:10:50',431.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 (10179,7,7,'2019-08-21 15:10:50',432.167000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10180,7,7,'2019-08-21 15:10:50',432.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 (10181,7,7,'2019-08-21 15:10:50',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 (10182,7,7,'2019-08-21 15:10:50',433.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 (10183,7,7,'2019-08-21 15:10:50',434.305000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10184,7,7,'2019-08-21 15:10:50',434.897000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10185,7,7,'2019-08-21 15:10:50',435.112000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10186,7,7,'2019-08-21 15:10:50',435.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 (10187,7,7,'2019-08-21 15:10:50',436.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 (10188,7,7,'2019-08-21 15:10:50',436.829000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10189,7,7,'2019-08-21 15:10:50',437.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 (10190,7,7,'2019-08-21 15:10:50',438.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 (10191,7,7,'2019-08-21 15:10:50',439.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 (10192,7,7,'2019-08-21 15:10:50',440.059000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10193,7,7,'2019-08-21 15:10:50',440.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 (10194,7,7,'2019-08-21 15:10:50',441.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 (10195,7,7,'2019-08-21 15:10:50',442.390000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10196,7,7,'2019-08-21 15:10:50',443.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 (10197,7,7,'2019-08-21 15:10:50',443.612000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10198,7,7,'2019-08-21 15:10:50',444.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 (10199,7,7,'2019-08-21 15:10:50',444.920000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10200,7,7,'2019-08-21 15:10:50',445.571000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10201,7,7,'2019-08-21 15:10:50',445.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 (10202,7,7,'2019-08-21 15:10:50',446.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 (10203,7,7,'2019-08-21 15:10:50',447.551000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10204,7,7,'2019-08-21 15:10:50',448.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 (10205,7,7,'2019-08-21 15:10:50',448.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 (10206,7,7,'2019-08-21 15:10:50',449.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 (10207,7,7,'2019-08-21 15:10:50',450.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 (10208,7,7,'2019-08-21 15:10:50',451.113000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10209,7,7,'2019-08-21 15:10:50',451.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 (10210,7,7,'2019-08-21 15:10:50',452.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 (10211,7,7,'2019-08-21 15:10:50',452.778000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10212,7,7,'2019-08-21 15:10:50',453.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 (10213,7,7,'2019-08-21 15:10:50',454.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 (10214,7,7,'2019-08-21 15:10:50',454.717000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10215,7,7,'2019-08-21 15:10:50',455.192000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10216,7,7,'2019-08-21 15:10:50',456.124000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10217,7,7,'2019-08-21 15:10:50',456.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 (10218,7,7,'2019-08-21 15:10:50',457.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 (10219,7,7,'2019-08-21 15:10:50',458.078000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10220,7,7,'2019-08-21 15:10:50',458.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 (10221,7,7,'2019-08-21 15:10:50',459.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 (10222,7,7,'2019-08-21 15:10:50',459.653000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10223,7,7,'2019-08-21 15:10:50',460.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 (10224,7,7,'2019-08-21 15:10:50',460.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 (10225,7,7,'2019-08-21 15:10:50',461.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 (10226,7,7,'2019-08-21 15:10:50',461.702000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10227,7,7,'2019-08-21 15:10:50',462.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 (10228,7,7,'2019-08-21 15:10:50',463.200000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10229,7,7,'2019-08-21 15:10:50',464.183000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10230,7,7,'2019-08-21 15:10:50',465.114000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10231,7,7,'2019-08-21 15:10:50',466.080000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10232,7,7,'2019-08-21 15:10:50',467.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 (10233,7,7,'2019-08-21 15:10:50',468.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 (10234,7,7,'2019-08-21 15:10:50',468.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 (10235,7,7,'2019-08-21 15:10:50',469.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 (10236,7,7,'2019-08-21 15:10:50',469.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 (10237,7,7,'2019-08-21 15:10:50',470.081000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10238,7,7,'2019-08-21 15:10:50',470.809000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10239,7,7,'2019-08-21 15:10:50',471.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 (10240,7,7,'2019-08-21 15:10:50',472.640000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10241,7,7,'2019-08-21 15:10:50',472.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 (10242,7,7,'2019-08-21 15:10:50',473.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 (10243,7,7,'2019-08-21 15:10:50',474.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 (10244,7,7,'2019-08-21 15:10:50',475.486000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10245,7,7,'2019-08-21 15:10:50',476.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 (10246,7,7,'2019-08-21 15:10:50',476.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 (10247,7,7,'2019-08-21 15:10:50',477.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 (10248,7,7,'2019-08-21 15:10:50',478.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 (10249,7,7,'2019-08-21 15:10:50',479.016000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10250,7,7,'2019-08-21 15:10:50',479.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 (10251,7,7,'2019-08-21 15:10:50',480.297000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10252,7,7,'2019-08-21 15:10:50',480.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 (10253,7,7,'2019-08-21 15:10:50',481.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 (10254,7,7,'2019-08-21 15:10:50',481.796000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10255,7,7,'2019-08-21 15:10:50',482.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 (10256,7,7,'2019-08-21 15:10:50',483.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 (10257,7,7,'2019-08-21 15:10:50',483.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 (10258,7,7,'2019-08-21 15:10:50',484.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 (10259,7,7,'2019-08-21 15:10:50',484.749000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10260,7,7,'2019-08-21 15:10:50',485.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 (10261,7,7,'2019-08-21 15:10:50',486.142000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10262,7,7,'2019-08-21 15:10:50',487.074000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10263,7,7,'2019-08-21 15:10:50',487.873000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10264,7,7,'2019-08-21 15:10:50',488.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 (10265,7,7,'2019-08-21 15:10:50',488.639000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10266,7,7,'2019-08-21 15:10:50',489.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 (10267,7,7,'2019-08-21 15:10:50',490.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 (10268,7,7,'2019-08-21 15:10:50',491.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 (10269,7,7,'2019-08-21 15:10:50',491.583000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10270,7,7,'2019-08-21 15:10:50',492.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 (10271,7,7,'2019-08-21 15:10:50',492.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 (10272,7,7,'2019-08-21 15:10:50',493.783000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10273,7,7,'2019-08-21 15:10:50',494.732000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10274,7,7,'2019-08-21 15:10:50',495.056000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10275,7,7,'2019-08-21 15:10:50',495.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 (10276,7,7,'2019-08-21 15:10:50',496.514000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10277,7,7,'2019-08-21 15:10:50',496.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 (10278,7,7,'2019-08-21 15:10:50',497.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 (10279,7,7,'2019-08-21 15:10:50',498.395000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10280,7,7,'2019-08-21 15:10:50',498.911000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10281,7,7,'2019-08-21 15:10:50',499.294000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10282,7,7,'2019-08-21 15:10:50',499.598000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10283,7,7,'2019-08-21 15:10:50',500.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 (10284,7,7,'2019-08-21 15:10:50',501.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 (10285,7,7,'2019-08-21 15:10:50',502.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 (10286,7,7,'2019-08-21 15:10:50',502.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 (10287,7,7,'2019-08-21 15:10:50',503.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 (10288,7,7,'2019-08-21 15:10:50',504.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 (10289,7,7,'2019-08-21 15:10:50',504.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 (10290,7,7,'2019-08-21 15:10:50',504.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 (10291,7,7,'2019-08-21 15:10:50',505.387000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10292,7,7,'2019-08-21 15:10:50',506.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 (10293,7,7,'2019-08-21 15:10:50',507.169000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10294,7,7,'2019-08-21 15:10:50',508.117000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10295,7,7,'2019-08-21 15:10:50',509.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 (10296,7,7,'2019-08-21 15:10:50',509.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 (10297,7,7,'2019-08-21 15:10:50',510.914000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10298,7,7,'2019-08-21 15:10:50',511.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 (10299,7,7,'2019-08-21 15:10:50',512.696000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10300,7,7,'2019-08-21 15:10:50',512.942000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10301,7,7,'2019-08-21 15:10:50',513.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 (10302,7,7,'2019-08-21 15:10:50',513.821000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10303,7,7,'2019-08-21 15:10:50',514.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 (10304,7,7,'2019-08-21 15:10:50',514.811000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10305,7,7,'2019-08-21 15:10:50',515.343000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10306,7,7,'2019-08-21 15:10:50',516.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 (10307,7,7,'2019-08-21 15:10:50',517.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 (10308,7,7,'2019-08-21 15:10:50',517.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 (10309,7,7,'2019-08-21 15:10:50',518.206000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10310,7,7,'2019-08-21 15:10:50',519.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 (10311,7,7,'2019-08-21 15:10:50',520.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 (10312,7,7,'2019-08-21 15:10:50',520.342000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10313,7,7,'2019-08-21 15:10:50',520.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 (10314,7,7,'2019-08-21 15:10:50',521.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 (10315,7,7,'2019-08-21 15:10:50',522.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 (10316,7,7,'2019-08-21 15:10:50',522.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 (10317,7,7,'2019-08-21 15:10:50',523.801000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10318,7,7,'2019-08-21 15:10:50',524.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 (10319,7,7,'2019-08-21 15:10:50',525.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 (10320,7,7,'2019-08-21 15:10:50',526.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 (10321,7,7,'2019-08-21 15:10:50',527.247000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10322,7,7,'2019-08-21 15:10:50',528.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 (10323,7,7,'2019-08-21 15:10:50',528.620000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10324,7,7,'2019-08-21 15:10:50',529.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 (10325,7,7,'2019-08-21 15:10:50',529.447000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10326,7,7,'2019-08-21 15:10:50',530.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 (10327,7,7,'2019-08-21 15:10:50',530.876000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10328,7,7,'2019-08-21 15:10:50',531.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 (10329,7,7,'2019-08-21 15:10:50',532.143000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10330,7,7,'2019-08-21 15:10:50',532.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 (10331,7,7,'2019-08-21 15:10:50',533.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 (10332,7,7,'2019-08-21 15:10:50',533.788000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10333,7,7,'2019-08-21 15:10:50',534.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 (10334,7,7,'2019-08-21 15:10:50',535.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 (10335,7,7,'2019-08-21 15:10:50',536.387000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10336,7,7,'2019-08-21 15:10:50',536.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 (10337,7,7,'2019-08-21 15:10:50',537.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 (10338,7,7,'2019-08-21 15:10:50',538.068000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10339,7,7,'2019-08-21 15:10:50',538.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 (10340,7,7,'2019-08-21 15:10:50',539.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 (10341,7,7,'2019-08-21 15:10:50',540.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 (10342,7,7,'2019-08-21 15:10:50',540.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 (10343,7,7,'2019-08-21 15:10:50',541.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 (10344,7,7,'2019-08-21 15:10:50',542.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 (10345,7,7,'2019-08-21 15:10:50',543.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 (10346,7,7,'2019-08-21 15:10:50',544.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 (10347,7,7,'2019-08-21 15:10:50',544.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 (10348,7,7,'2019-08-21 15:10:50',545.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 (10349,7,7,'2019-08-21 15:10:50',545.487000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10350,7,7,'2019-08-21 15:10:50',545.977000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10351,7,7,'2019-08-21 15:10:50',546.925000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10352,7,7,'2019-08-21 15:10:50',547.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 (10353,7,7,'2019-08-21 15:10:50',548.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 (10354,7,7,'2019-08-21 15:10:50',548.920000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10355,7,7,'2019-08-21 15:10:50',549.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 (10356,7,7,'2019-08-21 15:10:50',550.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 (10357,7,7,'2019-08-21 15:10:50',550.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 (10358,7,7,'2019-08-21 15:10:50',551.370000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10359,7,7,'2019-08-21 15:10:50',552.270000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10360,7,7,'2019-08-21 15:10:50',552.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 (10361,7,7,'2019-08-21 15:10:50',553.235000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10362,7,7,'2019-08-21 15:10:50',554.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 (10363,7,7,'2019-08-21 15:10:50',554.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 (10364,7,7,'2019-08-21 15:10:50',555.330000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10365,7,7,'2019-08-21 15:10:50',555.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 (10366,7,7,'2019-08-21 15:10:50',556.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 (10367,7,7,'2019-08-21 15:10:50',557.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 (10368,7,7,'2019-08-21 15:10:50',558.086000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10369,7,7,'2019-08-21 15:10:50',558.496000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10370,7,7,'2019-08-21 15:10:50',558.853000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10371,7,7,'2019-08-21 15:10:50',559.312000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10372,7,7,'2019-08-21 15:10:50',560.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 (10373,7,7,'2019-08-21 15:10:50',561.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 (10374,7,7,'2019-08-21 15:10:50',562.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 (10375,7,7,'2019-08-21 15:10:50',562.975000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10376,7,7,'2019-08-21 15:10:50',563.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 (10377,7,7,'2019-08-21 15:10:50',564.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 (10378,7,7,'2019-08-21 15:10:50',564.822000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10379,7,7,'2019-08-21 15:10:50',565.755000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10380,7,7,'2019-08-21 15:10:50',566.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 (10381,7,7,'2019-08-21 15:10:50',566.868000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10382,7,7,'2019-08-21 15:10:50',567.319000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10383,7,7,'2019-08-21 15:10:50',568.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 (10384,7,7,'2019-08-21 15:10:50',569.067000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10385,7,7,'2019-08-21 15:10:50',570.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 (10386,7,7,'2019-08-21 15:10:50',570.849000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10387,7,7,'2019-08-21 15:10:50',571.209000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10388,7,7,'2019-08-21 15:10:50',571.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 (10389,7,7,'2019-08-21 15:10:50',572.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 (10390,7,7,'2019-08-21 15:10:50',572.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 (10391,7,7,'2019-08-21 15:10:50',573.496000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10392,7,7,'2019-08-21 15:10:50',573.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 (10393,7,7,'2019-08-21 15:10:50',574.412000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10394,7,7,'2019-08-21 15:10:50',575.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 (10395,7,7,'2019-08-21 15:10:50',575.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 (10396,7,7,'2019-08-21 15:10:50',576.926000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10397,7,7,'2019-08-21 15:10:50',577.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 (10398,7,7,'2019-08-21 15:10:50',577.774000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10399,7,7,'2019-08-21 15:10:50',578.757000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10400,7,7,'2019-08-21 15:10:50',579.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 (10401,7,7,'2019-08-21 15:10:50',580.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 (10402,7,7,'2019-08-21 15:10:50',581.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 (10403,7,7,'2019-08-21 15:10:50',582.137000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10404,7,7,'2019-08-21 15:10:50',582.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 (10405,7,7,'2019-08-21 15:10:50',583.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 (10406,7,7,'2019-08-21 15:10:50',583.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 (10407,7,7,'2019-08-21 15:10:50',583.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 (10408,7,7,'2019-08-21 15:10:50',584.601000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10409,7,7,'2019-08-21 15:10:50',585.550000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10410,7,7,'2019-08-21 15:10:50',585.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 (10411,7,7,'2019-08-21 15:10:50',586.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 (10412,7,7,'2019-08-21 15:10:50',586.814000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10413,7,7,'2019-08-21 15:10:50',587.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 (10414,7,7,'2019-08-21 15:10:50',588.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 (10415,7,7,'2019-08-21 15:10:50',588.946000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10416,7,7,'2019-08-21 15:10:50',589.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 (10417,7,7,'2019-08-21 15:10:50',590.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 (10418,7,7,'2019-08-21 15:10:50',590.627000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10419,7,7,'2019-08-21 15:10:50',591.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 (10420,7,7,'2019-08-21 15:10:50',592.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 (10421,7,7,'2019-08-21 15:10:50',593.191000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10422,7,7,'2019-08-21 15:10:50',593.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 (10423,7,7,'2019-08-21 15:10:50',605.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 (10424,7,7,'2019-08-21 15:10:50',629.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 (10425,7,7,'2019-08-21 15:10:50',630.358000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10426,7,7,'2019-08-21 15:10:50',631.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 (10427,7,7,'2019-08-21 15:10:50',631.441000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10428,7,7,'2019-08-21 15:10:50',631.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 (10429,7,7,'2019-08-21 15:10:50',632.148000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10430,7,7,'2019-08-21 15:10:50',632.839000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10431,7,7,'2019-08-21 15:10:50',633.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 (10432,7,7,'2019-08-21 15:10:50',634.721000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10433,7,7,'2019-08-21 15:10:50',635.086000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10434,7,7,'2019-08-21 15:10:50',635.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 (10435,7,7,'2019-08-21 15:10:50',636.452000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10436,7,7,'2019-08-21 15:10:50',637.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 (10437,7,7,'2019-08-21 15:10:50',638.200000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10438,7,7,'2019-08-21 15:10:50',639.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 (10439,7,7,'2019-08-21 15:10:50',639.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 (10440,7,7,'2019-08-21 15:10:50',639.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 (10441,7,7,'2019-08-21 15:10:50',640.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 (10442,7,7,'2019-08-21 15:10:50',640.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 (10443,7,7,'2019-08-21 15:10:50',641.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 (10444,7,7,'2019-08-21 15:10:50',641.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 (10445,7,7,'2019-08-21 15:10:50',642.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 (10446,7,7,'2019-08-21 15:10:50',643.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 (10447,7,7,'2019-08-21 15:10:50',644.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 (10448,7,7,'2019-08-21 15:10:50',644.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 (10449,7,7,'2019-08-21 15:10:50',645.625000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10450,7,7,'2019-08-21 15:10:50',645.968000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10451,7,7,'2019-08-21 15:10:50',646.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 (10452,7,7,'2019-08-21 15:10:50',647.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 (10453,7,7,'2019-08-21 15:10:50',647.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 (10454,7,7,'2019-08-21 15:10:50',648.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 (10455,7,7,'2019-08-21 15:10:50',648.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 (10456,7,7,'2019-08-21 15:10:50',649.888000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10457,7,7,'2019-08-21 15:10:50',650.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 (10458,7,7,'2019-08-21 15:10:50',650.770000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10459,7,7,'2019-08-21 15:10:50',651.535000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10460,7,7,'2019-08-21 15:10:50',652.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 (10461,7,7,'2019-08-21 15:10:50',653.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 (10462,7,7,'2019-08-21 15:10:50',654.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 (10463,7,7,'2019-08-21 15:10:50',654.599000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10464,7,7,'2019-08-21 15:10:50',655.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 (10465,7,7,'2019-08-21 15:10:50',655.427000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10466,7,7,'2019-08-21 15:10:50',655.931000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10467,7,7,'2019-08-21 15:10:50',656.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 (10468,7,7,'2019-08-21 15:10:50',657.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 (10469,7,7,'2019-08-21 15:10:50',658.678000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10470,7,7,'2019-08-21 15:10:50',659.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 (10471,7,7,'2019-08-21 15:10:50',659.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 (10472,7,7,'2019-08-21 15:10:50',660.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 (10473,7,7,'2019-08-21 15:10:50',661.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 (10474,7,7,'2019-08-21 15:10:50',662.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 (10475,7,7,'2019-08-21 15:10:50',662.695000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10476,7,7,'2019-08-21 15:10:50',663.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 (10477,7,7,'2019-08-21 15:10:50',663.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 (10478,7,7,'2019-08-21 15:10:50',664.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 (10479,7,7,'2019-08-21 15:10:50',665.254000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10480,7,7,'2019-08-21 15:10:50',666.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 (10481,7,7,'2019-08-21 15:10:50',667.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 (10482,7,7,'2019-08-21 15:10:50',668.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 (10483,7,7,'2019-08-21 15:10:50',668.378000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10484,7,7,'2019-08-21 15:10:50',668.800000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10485,7,7,'2019-08-21 15:10:50',669.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 (10486,7,7,'2019-08-21 15:10:50',669.683000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10487,7,7,'2019-08-21 15:10:50',670.481000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10488,7,7,'2019-08-21 15:10:50',671.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 (10489,7,7,'2019-08-21 15:10:50',672.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 (10490,7,7,'2019-08-21 15:10:50',673.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 (10491,7,7,'2019-08-21 15:10:50',674.228000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10492,7,7,'2019-08-21 15:10:50',674.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 (10493,7,7,'2019-08-21 15:10:50',675.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 (10494,7,7,'2019-08-21 15:10:50',675.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 (10495,7,7,'2019-08-21 15:10:50',676.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 (10496,7,7,'2019-08-21 15:10:50',676.941000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10497,7,7,'2019-08-21 15:10:50',677.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 (10498,7,7,'2019-08-21 15:10:50',678.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 (10499,7,7,'2019-08-21 15:10:50',678.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 (10500,7,7,'2019-08-21 15:10:50',679.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 (10501,7,7,'2019-08-21 15:10:50',679.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 (10502,7,7,'2019-08-21 15:10:50',680.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 (10503,7,7,'2019-08-21 15:10:50',681.286000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10504,7,7,'2019-08-21 15:10:50',682.252000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10505,7,7,'2019-08-21 15:10:50',683.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 (10506,7,7,'2019-08-21 15:10:50',683.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 (10507,7,7,'2019-08-21 15:10:50',684.100000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10508,7,7,'2019-08-21 15:10:50',685.016000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10509,7,7,'2019-08-21 15:10:50',685.337000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10510,7,7,'2019-08-21 15:10:50',685.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 (10511,7,7,'2019-08-21 15:10:50',686.614000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10512,7,7,'2019-08-21 15:10:50',687.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 (10513,7,7,'2019-08-21 15:10:50',688.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 (10514,7,7,'2019-08-21 15:10:50',688.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 (10515,7,7,'2019-08-21 15:10:50',689.161000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10516,7,7,'2019-08-21 15:10:50',690.160000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10517,7,7,'2019-08-21 15:10:50',690.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 (10518,7,7,'2019-08-21 15:10:50',691.741000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10519,7,7,'2019-08-21 15:10:50',692.020000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10520,7,7,'2019-08-21 15:10:50',692.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 (10521,7,7,'2019-08-21 15:10:50',692.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 (10522,7,7,'2019-08-21 15:10:50',693.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 (10523,7,7,'2019-08-21 15:10:50',694.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 (10524,7,7,'2019-08-21 15:10:50',695.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 (10525,7,7,'2019-08-21 15:10:50',696.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 (10526,7,7,'2019-08-21 15:10:50',696.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 (10527,7,7,'2019-08-21 15:10:50',697.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 (10528,7,7,'2019-08-21 15:10:50',698.118000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10529,7,7,'2019-08-21 15:10:50',698.399000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10530,7,7,'2019-08-21 15:10:50',698.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 (10531,7,7,'2019-08-21 15:10:50',699.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 (10532,7,7,'2019-08-21 15:10:50',700.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 (10533,7,7,'2019-08-21 15:10:50',701.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 (10534,7,7,'2019-08-21 15:10:50',702.313000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10535,7,7,'2019-08-21 15:10:50',702.649000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10536,7,7,'2019-08-21 15:10:50',703.129000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10537,7,7,'2019-08-21 15:10:50',703.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 (10538,7,7,'2019-08-21 15:10:50',703.995000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10539,7,7,'2019-08-21 15:10:50',704.794000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10540,7,7,'2019-08-21 15:10:50',705.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 (10541,7,7,'2019-08-21 15:10:50',705.950000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10542,7,7,'2019-08-21 15:10:50',706.642000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10543,7,7,'2019-08-21 15:10:50',707.508000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10544,7,7,'2019-08-21 15:10:50',708.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 (10545,7,7,'2019-08-21 15:10:50',708.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 (10546,7,7,'2019-08-21 15:10:50',709.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 (10547,7,7,'2019-08-21 15:10:50',710.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 (10548,7,7,'2019-08-21 15:10:50',710.352000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10549,7,7,'2019-08-21 15:10:50',710.787000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10550,7,7,'2019-08-21 15:10:50',711.720000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10551,7,7,'2019-08-21 15:10:50',712.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 (10552,7,7,'2019-08-21 15:10:50',713.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 (10553,7,7,'2019-08-21 15:10:50',713.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 (10554,7,7,'2019-08-21 15:10:50',714.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 (10555,7,7,'2019-08-21 15:10:50',714.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 (10556,7,7,'2019-08-21 15:10:50',715.932000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10557,7,7,'2019-08-21 15:10:50',716.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 (10558,7,7,'2019-08-21 15:10:50',717.125000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10559,7,7,'2019-08-21 15:10:50',717.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 (10560,7,7,'2019-08-21 15:10:50',718.695000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10561,7,7,'2019-08-21 15:10:50',719.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 (10562,7,7,'2019-08-21 15:10:50',719.921000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10563,7,7,'2019-08-21 15:10:50',720.427000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10564,7,7,'2019-08-21 15:10:50',721.409000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10565,7,7,'2019-08-21 15:10:50',721.769000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10566,7,7,'2019-08-21 15:10:50',722.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 (10567,7,7,'2019-08-21 15:10:50',723.124000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10568,7,7,'2019-08-21 15:10:50',724.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 (10569,7,7,'2019-08-21 15:10:50',724.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 (10570,7,7,'2019-08-21 15:10:50',725.821000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10571,7,7,'2019-08-21 15:10:50',726.804000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10572,7,7,'2019-08-21 15:10:50',727.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 (10573,7,7,'2019-08-21 15:10:50',727.786000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10574,7,7,'2019-08-21 15:10:50',728.585000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10575,7,7,'2019-08-21 15:10:50',728.885000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10576,7,7,'2019-08-21 15:10:50',729.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 (10577,7,7,'2019-08-21 15:10:50',729.985000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10578,7,7,'2019-08-21 15:10:50',730.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 (10579,7,7,'2019-08-21 15:10:50',731.115000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10580,7,7,'2019-08-21 15:10:50',731.429000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10581,7,7,'2019-08-21 15:10:50',731.948000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10582,7,7,'2019-08-21 15:10:50',732.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 (10583,7,7,'2019-08-21 15:10:50',733.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 (10584,7,7,'2019-08-21 15:10:50',734.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 (10585,7,7,'2019-08-21 15:10:50',735.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 (10586,7,7,'2019-08-21 15:10:50',735.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 (10587,7,7,'2019-08-21 15:10:50',736.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 (10588,7,7,'2019-08-21 15:10:50',737.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 (10589,7,7,'2019-08-21 15:10:50',738.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 (10590,7,7,'2019-08-21 15:10:50',738.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 (10591,7,7,'2019-08-21 15:10:50',739.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 (10592,7,7,'2019-08-21 15:10:50',739.956000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10593,7,7,'2019-08-21 15:10:50',740.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 (10594,7,7,'2019-08-21 15:10:50',741.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 (10595,7,7,'2019-08-21 15:10:50',741.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 (10596,7,7,'2019-08-21 15:10:50',742.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 (10597,7,7,'2019-08-21 15:10:50',743.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 (10598,7,7,'2019-08-21 15:10:50',744.501000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10599,7,7,'2019-08-21 15:10:50',744.823000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10600,7,7,'2019-08-21 15:10:50',745.500000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10601,7,7,'2019-08-21 15:10:50',746.349000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10602,7,7,'2019-08-21 15:10:50',747.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 (10603,7,7,'2019-08-21 15:10:50',747.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 (10604,7,7,'2019-08-21 15:10:50',747.931000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10605,7,7,'2019-08-21 15:10:50',748.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 (10606,7,7,'2019-08-21 15:10:50',749.285000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10607,7,7,'2019-08-21 15:10:50',749.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 (10608,7,7,'2019-08-21 15:10:50',750.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 (10609,7,7,'2019-08-21 15:10:50',751.443000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10610,7,7,'2019-08-21 15:10:50',752.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 (10611,7,7,'2019-08-21 15:10:50',753.208000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10612,7,7,'2019-08-21 15:10:50',753.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 (10613,7,7,'2019-08-21 15:10:50',754.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 (10614,7,7,'2019-08-21 15:10:50',754.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 (10615,7,7,'2019-08-21 15:10:50',755.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 (10616,7,7,'2019-08-21 15:10:50',755.972000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10617,7,7,'2019-08-21 15:10:50',756.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 (10618,7,7,'2019-08-21 15:10:50',757.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 (10619,7,7,'2019-08-21 15:10:50',758.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 (10620,7,7,'2019-08-21 15:10:50',758.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 (10621,7,7,'2019-08-21 15:10:50',759.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 (10622,7,7,'2019-08-21 15:10:50',759.732000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10623,7,7,'2019-08-21 15:10:50',760.316000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10624,7,7,'2019-08-21 15:10:50',761.232000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10625,7,7,'2019-08-21 15:10:50',761.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 (10626,7,7,'2019-08-21 15:10:50',762.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 (10627,7,7,'2019-08-21 15:10:50',762.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 (10628,7,7,'2019-08-21 15:10:50',763.779000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10629,7,7,'2019-08-21 15:10:50',764.596000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10630,7,7,'2019-08-21 15:10:50',764.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 (10631,7,7,'2019-08-21 15:10:50',765.378000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10632,7,7,'2019-08-21 15:10:50',766.344000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10633,7,7,'2019-08-21 15:10:50',767.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 (10634,7,7,'2019-08-21 15:10:50',767.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 (10635,7,7,'2019-08-21 15:10:50',768.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 (10636,7,7,'2019-08-21 15:10:50',768.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 (10637,7,7,'2019-08-21 15:10:50',769.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 (10638,7,7,'2019-08-21 15:10:50',769.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 (10639,7,7,'2019-08-21 15:10:50',770.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 (10640,7,7,'2019-08-21 15:10:50',771.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 (10641,7,7,'2019-08-21 15:10:50',772.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 (10642,7,7,'2019-08-21 15:10:50',773.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 (10643,7,7,'2019-08-21 15:10:50',773.902000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10644,7,7,'2019-08-21 15:10:50',774.751000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10645,7,7,'2019-08-21 15:10:50',775.056000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10646,7,7,'2019-08-21 15:10:50',775.533000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10647,7,7,'2019-08-21 15:10:50',775.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 (10648,7,7,'2019-08-21 15:10:50',776.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 (10649,7,7,'2019-08-21 15:10:50',777.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 (10650,7,7,'2019-08-21 15:10:50',778.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 (10651,7,7,'2019-08-21 15:10:50',779.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 (10652,7,7,'2019-08-21 15:10:50',779.295000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10653,7,7,'2019-08-21 15:10:50',779.945000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10654,7,7,'2019-08-21 15:10:50',780.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 (10655,7,7,'2019-08-21 15:10:50',781.223000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10656,7,7,'2019-08-21 15:10:50',781.776000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10657,7,7,'2019-08-21 15:10:50',782.132000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10658,7,7,'2019-08-21 15:10:50',782.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 (10659,7,7,'2019-08-21 15:10:50',783.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 (10660,7,7,'2019-08-21 15:10:50',783.717000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10661,7,7,'2019-08-21 15:10:50',784.308000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10662,7,7,'2019-08-21 15:10:50',785.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 (10663,7,7,'2019-08-21 15:10:50',786.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 (10664,7,7,'2019-08-21 15:10:50',787.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 (10665,7,7,'2019-08-21 15:10:50',788.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 (10666,7,7,'2019-08-21 15:10:50',788.853000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10667,7,7,'2019-08-21 15:10:50',789.167000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10668,7,7,'2019-08-21 15:10:50',789.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 (10669,7,7,'2019-08-21 15:10:50',790.783000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10670,7,7,'2019-08-21 15:10:50',791.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 (10671,7,7,'2019-08-21 15:10:50',791.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 (10672,7,7,'2019-08-21 15:10:50',792.548000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10673,7,7,'2019-08-21 15:10:50',793.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 (10674,7,7,'2019-08-21 15:10:50',794.413000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10675,7,7,'2019-08-21 15:10:50',794.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 (10676,7,7,'2019-08-21 15:10:50',795.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 (10677,7,7,'2019-08-21 15:10:50',796.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 (10678,7,7,'2019-08-21 15:10:50',796.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 (10679,7,7,'2019-08-21 15:10:50',796.794000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10680,7,7,'2019-08-21 15:10:50',797.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 (10681,7,7,'2019-08-21 15:10:50',798.358000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10682,7,7,'2019-08-21 15:10:50',798.717000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10683,7,7,'2019-08-21 15:10:50',799.341000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10684,7,7,'2019-08-21 15:10:50',799.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 (10685,7,7,'2019-08-21 15:10:50',800.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 (10686,7,7,'2019-08-21 15:10:50',801.155000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10687,7,7,'2019-08-21 15:10:50',802.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 (10688,7,7,'2019-08-21 15:10:50',803.087000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10689,7,7,'2019-08-21 15:10:50',803.936000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10690,7,7,'2019-08-21 15:10:50',804.258000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10691,7,7,'2019-08-21 15:10:50',804.868000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10692,7,7,'2019-08-21 15:10:50',805.784000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10693,7,7,'2019-08-21 15:10:50',806.146000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10694,7,7,'2019-08-21 15:10:50',806.566000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10695,7,7,'2019-08-21 15:10:50',807.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 (10696,7,7,'2019-08-21 15:10:50',808.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 (10697,7,7,'2019-08-21 15:10:50',808.659000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10698,7,7,'2019-08-21 15:10:50',809.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 (10699,7,7,'2019-08-21 15:10:50',810.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 (10700,7,7,'2019-08-21 15:10:50',810.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 (10701,7,7,'2019-08-21 15:10:50',811.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 (10702,7,7,'2019-08-21 15:10:50',811.977000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10703,7,7,'2019-08-21 15:10:50',812.826000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10704,7,7,'2019-08-21 15:10:50',813.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 (10705,7,7,'2019-08-21 15:10:50',814.374000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10706,7,7,'2019-08-21 15:10:50',814.716000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10707,7,7,'2019-08-21 15:10:50',815.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 (10708,7,7,'2019-08-21 15:10:50',816.223000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10709,7,7,'2019-08-21 15:10:50',817.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 (10710,7,7,'2019-08-21 15:10:50',817.341000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10711,7,7,'2019-08-21 15:10:50',817.971000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10712,7,7,'2019-08-21 15:10:50',818.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 (10713,7,7,'2019-08-21 15:10:50',819.248000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10714,7,7,'2019-08-21 15:10:50',819.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 (10715,7,7,'2019-08-21 15:10:50',820.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 (10716,7,7,'2019-08-21 15:10:50',821.717000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10717,7,7,'2019-08-21 15:10:50',822.034000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10718,7,7,'2019-08-21 15:10:50',822.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 (10719,7,7,'2019-08-21 15:10:50',823.564000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10720,7,7,'2019-08-21 15:10:50',824.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 (10721,7,7,'2019-08-21 15:10:50',825.129000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10722,7,7,'2019-08-21 15:10:50',825.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 (10723,7,7,'2019-08-21 15:10:50',826.345000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10724,7,7,'2019-08-21 15:10:50',826.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 (10725,7,7,'2019-08-21 15:10:50',827.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 (10726,7,7,'2019-08-21 15:10:50',827.644000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10727,7,7,'2019-08-21 15:10:50',828.492000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10728,7,7,'2019-08-21 15:10:50',829.425000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10729,7,7,'2019-08-21 15:10:50',830.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 (10730,7,7,'2019-08-21 15:10:50',831.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 (10731,7,7,'2019-08-21 15:10:50',831.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 (10732,7,7,'2019-08-21 15:10:50',831.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 (10733,7,7,'2019-08-21 15:10:50',832.280000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10734,7,7,'2019-08-21 15:10:50',832.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 (10735,7,7,'2019-08-21 15:10:50',833.139000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10736,7,7,'2019-08-21 15:10:50',833.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 (10737,7,7,'2019-08-21 15:10:50',834.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 (10738,7,7,'2019-08-21 15:10:50',834.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 (10739,7,7,'2019-08-21 15:10:50',835.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 (10740,7,7,'2019-08-21 15:10:50',835.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 (10741,7,7,'2019-08-21 15:10:50',836.217000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10742,7,7,'2019-08-21 15:10:50',836.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 (10743,7,7,'2019-08-21 15:10:50',837.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 (10744,7,7,'2019-08-21 15:10:50',838.881000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10745,7,7,'2019-08-21 15:10:50',839.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 (10746,7,7,'2019-08-21 15:10:50',840.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 (10747,7,7,'2019-08-21 15:10:50',841.113000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10748,7,7,'2019-08-21 15:10:50',841.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 (10749,7,7,'2019-08-21 15:10:50',842.394000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10750,7,7,'2019-08-21 15:10:50',843.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 (10751,7,7,'2019-08-21 15:10:50',843.747000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10752,7,7,'2019-08-21 15:10:50',844.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 (10753,7,7,'2019-08-21 15:10:50',845.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 (10754,7,7,'2019-08-21 15:10:50',846.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 (10755,7,7,'2019-08-21 15:10:50',846.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 (10756,7,7,'2019-08-21 15:10:50',847.341000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10757,7,7,'2019-08-21 15:10:50',847.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 (10758,7,7,'2019-08-21 15:10:50',848.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 (10759,7,7,'2019-08-21 15:10:50',849.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 (10760,7,7,'2019-08-21 15:10:50',850.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 (10761,7,7,'2019-08-21 15:10:50',850.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 (10762,7,7,'2019-08-21 15:10:50',851.056000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10763,7,7,'2019-08-21 15:10:50',851.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 (10764,7,7,'2019-08-21 15:10:50',852.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 (10765,7,7,'2019-08-21 15:10:50',853.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 (10766,7,7,'2019-08-21 15:10:50',854.298000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10767,7,7,'2019-08-21 15:10:50',855.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 (10768,7,7,'2019-08-21 15:10:50',855.537000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10769,7,7,'2019-08-21 15:10:50',856.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 (10770,7,7,'2019-08-21 15:10:50',856.355000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10771,7,7,'2019-08-21 15:10:50',856.944000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10772,7,7,'2019-08-21 15:10:50',857.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 (10773,7,7,'2019-08-21 15:10:50',857.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 (10774,7,7,'2019-08-21 15:10:50',858.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 (10775,7,7,'2019-08-21 15:10:50',859.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 (10776,7,7,'2019-08-21 15:10:50',860.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 (10777,7,7,'2019-08-21 15:10:50',861.390000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10778,7,7,'2019-08-21 15:10:50',862.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 (10779,7,7,'2019-08-21 15:10:50',863.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 (10780,7,7,'2019-08-21 15:10:50',863.987000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10781,7,7,'2019-08-21 15:10:50',864.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 (10782,7,7,'2019-08-21 15:10:50',864.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 (10783,7,7,'2019-08-21 15:10:50',865.885000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10784,7,7,'2019-08-21 15:10:50',866.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 (10785,7,7,'2019-08-21 15:10:50',866.667000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10786,7,7,'2019-08-21 15:10:50',867.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 (10787,7,7,'2019-08-21 15:10:50',867.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 (10788,7,7,'2019-08-21 15:10:50',868.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 (10789,7,7,'2019-08-21 15:10:50',869.464000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10790,7,7,'2019-08-21 15:10:50',870.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 (10791,7,7,'2019-08-21 15:10:50',870.628000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10792,7,7,'2019-08-21 15:10:50',871.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 (10793,7,7,'2019-08-21 15:10:50',872.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 (10794,7,7,'2019-08-21 15:10:50',872.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 (10795,7,7,'2019-08-21 15:10:50',873.909000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10796,7,7,'2019-08-21 15:10:50',874.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 (10797,7,7,'2019-08-21 15:10:50',874.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 (10798,7,7,'2019-08-21 15:10:50',875.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 (10799,7,7,'2019-08-21 15:10:50',875.808000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10800,7,7,'2019-08-21 15:10:50',876.773000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10801,7,7,'2019-08-21 15:10:50',877.639000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10802,7,7,'2019-08-21 15:10:50',878.555000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10803,7,7,'2019-08-21 15:10:50',879.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 (10804,7,7,'2019-08-21 15:10:50',879.743000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10805,7,7,'2019-08-21 15:10:50',880.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 (10806,7,7,'2019-08-21 15:10:50',881.019000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10807,7,7,'2019-08-21 15:10:50',881.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 (10808,7,7,'2019-08-21 15:10:50',881.968000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10809,7,7,'2019-08-21 15:10:50',882.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 (10810,7,7,'2019-08-21 15:10:50',883.615000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10811,7,7,'2019-08-21 15:10:50',883.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 (10812,7,7,'2019-08-21 15:10:50',884.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 (10813,7,7,'2019-08-21 15:10:50',885.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 (10814,7,7,'2019-08-21 15:10:50',886.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 (10815,7,7,'2019-08-21 15:10:50',886.477000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10816,7,7,'2019-08-21 15:10:50',886.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 (10817,7,7,'2019-08-21 15:10:50',887.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 (10818,7,7,'2019-08-21 15:10:50',888.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 (10819,7,7,'2019-08-21 15:10:50',889.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 (10820,7,7,'2019-08-21 15:10:50',889.692000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10821,7,7,'2019-08-21 15:10:50',890.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 (10822,7,7,'2019-08-21 15:10:50',890.897000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10823,7,7,'2019-08-21 15:10:50',891.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 (10824,7,7,'2019-08-21 15:10:50',892.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 (10825,7,7,'2019-08-21 15:10:50',904.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 (10826,7,7,'2019-08-21 15:10:50',936.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 (10827,7,7,'2019-08-21 15:10:50',937.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 (10828,7,7,'2019-08-21 15:10:50',938.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 (10829,7,7,'2019-08-21 15:10:50',939.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 (10830,7,7,'2019-08-21 15:10:50',939.742000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10831,7,7,'2019-08-21 15:10:50',940.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 (10832,7,7,'2019-08-21 15:10:50',940.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 (10833,7,7,'2019-08-21 15:10:50',941.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 (10834,7,7,'2019-08-21 15:10:50',941.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 (10835,7,7,'2019-08-21 15:10:50',942.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 (10836,7,7,'2019-08-21 15:10:50',942.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 (10837,7,7,'2019-08-21 15:10:50',943.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 (10838,7,7,'2019-08-21 15:10:50',944.094000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10839,7,7,'2019-08-21 15:10:50',944.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 (10840,7,7,'2019-08-21 15:10:50',945.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 (10841,7,7,'2019-08-21 15:10:50',946.434000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10842,7,7,'2019-08-21 15:10:50',947.383000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10843,7,7,'2019-08-21 15:10:50',947.717000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10844,7,7,'2019-08-21 15:10:50',948.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 (10845,7,7,'2019-08-21 15:10:50',949.230000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10846,7,7,'2019-08-21 15:10:50',950.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 (10847,7,7,'2019-08-21 15:10:50',951.012000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10848,7,7,'2019-08-21 15:10:50',951.811000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10849,7,7,'2019-08-21 15:10:50',952.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 (10850,7,7,'2019-08-21 15:10:50',952.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 (10851,7,7,'2019-08-21 15:10:50',953.575000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10852,7,7,'2019-08-21 15:10:50',954.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 (10853,7,7,'2019-08-21 15:10:50',954.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 (10854,7,7,'2019-08-21 15:10:50',955.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 (10855,7,7,'2019-08-21 15:10:50',956.289000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10856,7,7,'2019-08-21 15:10:50',956.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 (10857,7,7,'2019-08-21 15:10:50',957.172000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10858,7,7,'2019-08-21 15:10:50',958.138000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10859,7,7,'2019-08-21 15:10:50',959.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 (10860,7,7,'2019-08-21 15:10:50',959.355000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10861,7,7,'2019-08-21 15:10:50',959.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 (10862,7,7,'2019-08-21 15:10:50',960.784000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10863,7,7,'2019-08-21 15:10:50',961.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 (10864,7,7,'2019-08-21 15:10:50',961.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 (10865,7,7,'2019-08-21 15:10:50',962.549000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10866,7,7,'2019-08-21 15:10:50',963.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 (10867,7,7,'2019-08-21 15:10:50',963.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 (10868,7,7,'2019-08-21 15:10:50',964.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 (10869,7,7,'2019-08-21 15:10:50',965.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 (10870,7,7,'2019-08-21 15:10:50',965.544000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10871,7,7,'2019-08-21 15:10:50',966.096000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10872,7,7,'2019-08-21 15:10:50',967.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 (10873,7,7,'2019-08-21 15:10:50',967.977000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10874,7,7,'2019-08-21 15:10:50',968.926000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10875,7,7,'2019-08-21 15:10:50',969.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 (10876,7,7,'2019-08-21 15:10:50',969.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 (10877,7,7,'2019-08-21 15:10:50',970.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 (10878,7,7,'2019-08-21 15:10:50',970.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 (10879,7,7,'2019-08-21 15:10:50',971.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 (10880,7,7,'2019-08-21 15:10:50',972.339000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10881,7,7,'2019-08-21 15:10:50',973.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 (10882,7,7,'2019-08-21 15:10:50',974.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 (10883,7,7,'2019-08-21 15:10:50',974.936000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10884,7,7,'2019-08-21 15:10:50',975.885000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10885,7,7,'2019-08-21 15:10:50',976.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 (10886,7,7,'2019-08-21 15:10:50',977.699000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10887,7,7,'2019-08-21 15:10:50',978.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 (10888,7,7,'2019-08-21 15:10:50',978.615000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10889,7,7,'2019-08-21 15:10:50',978.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 (10890,7,7,'2019-08-21 15:10:50',979.580000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10891,7,7,'2019-08-21 15:10:50',980.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 (10892,7,7,'2019-08-21 15:10:50',981.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 (10893,7,7,'2019-08-21 15:10:50',982.311000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10894,7,7,'2019-08-21 15:10:50',983.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 (10895,7,7,'2019-08-21 15:10:50',983.592000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10896,7,7,'2019-08-21 15:10:50',984.126000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10897,7,7,'2019-08-21 15:10:50',984.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 (10898,7,7,'2019-08-21 15:10:50',985.024000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10899,7,7,'2019-08-21 15:10:50',985.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 (10900,7,7,'2019-08-21 15:10:50',986.723000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10901,7,7,'2019-08-21 15:10:50',987.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 (10902,7,7,'2019-08-21 15:10:50',987.505000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10903,7,7,'2019-08-21 15:10:50',988.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 (10904,7,7,'2019-08-21 15:10:50',988.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 (10905,7,7,'2019-08-21 15:10:50',989.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 (10906,7,7,'2019-08-21 15:10:50',990.119000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10907,7,7,'2019-08-21 15:10:50',990.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 (10908,7,7,'2019-08-21 15:10:50',990.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 (10909,7,7,'2019-08-21 15:10:50',991.784000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10910,7,7,'2019-08-21 15:10:50',992.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 (10911,7,7,'2019-08-21 15:10:50',992.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 (10912,7,7,'2019-08-21 15:10:50',993.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 (10913,7,7,'2019-08-21 15:10:50',994.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 (10914,7,7,'2019-08-21 15:10:50',995.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 (10915,7,7,'2019-08-21 15:10:50',996.029000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10916,7,7,'2019-08-21 15:10:50',996.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 (10917,7,7,'2019-08-21 15:10:50',996.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 (10918,7,7,'2019-08-21 15:10:50',997.744000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10919,7,7,'2019-08-21 15:10:50',998.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 (10920,7,7,'2019-08-21 15:10:50',998.945000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10921,7,7,'2019-08-21 15:10:50',999.608000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10922,7,7,'2019-08-21 15:10:50',1000.441000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10923,7,7,'2019-08-21 15:10:50',1001.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 (10924,7,7,'2019-08-21 15:10:50',1001.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 (10925,7,7,'2019-08-21 15:10:50',1002.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 (10926,7,7,'2019-08-21 15:10:50',1002.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 (10927,7,7,'2019-08-21 15:10:50',1002.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 (10928,7,7,'2019-08-21 15:10:50',1003.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 (10929,7,7,'2019-08-21 15:10:50',1004.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 (10930,7,7,'2019-08-21 15:10:50',1005.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 (10931,7,7,'2019-08-21 15:10:50',1006.451000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10932,7,7,'2019-08-21 15:10:50',1007.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 (10933,7,7,'2019-08-21 15:10:50',1007.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 (10934,7,7,'2019-08-21 15:10:50',1008.066000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10935,7,7,'2019-08-21 15:10:50',1009.049000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10936,7,7,'2019-08-21 15:10:50',1009.383000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10937,7,7,'2019-08-21 15:10:50',1009.914000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10938,7,7,'2019-08-21 15:10:50',1010.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 (10939,7,7,'2019-08-21 15:10:50',1011.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 (10940,7,7,'2019-08-21 15:10:50',1011.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 (10941,7,7,'2019-08-21 15:10:50',1012.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 (10942,7,7,'2019-08-21 15:10:50',1013.460000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10943,7,7,'2019-08-21 15:10:50',1014.409000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10944,7,7,'2019-08-21 15:10:50',1015.225000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10945,7,7,'2019-08-21 15:10:50',1015.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 (10946,7,7,'2019-08-21 15:10:50',1016.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 (10947,7,7,'2019-08-21 15:10:50',1017.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 (10948,7,7,'2019-08-21 15:10:50',1018.155000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10949,7,7,'2019-08-21 15:10:50',1018.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 (10950,7,7,'2019-08-21 15:10:50',1018.987000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10951,7,7,'2019-08-21 15:10:50',1019.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 (10952,7,7,'2019-08-21 15:10:50',1020.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 (10953,7,7,'2019-08-21 15:10:50',1021.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 (10954,7,7,'2019-08-21 15:10:50',1021.668000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10955,7,7,'2019-08-21 15:10:50',1022.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 (10956,7,7,'2019-08-21 15:10:50',1023.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 (10957,7,7,'2019-08-21 15:10:50',1023.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 (10958,7,7,'2019-08-21 15:10:50',1024.115000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10959,7,7,'2019-08-21 15:10:50',1024.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 (10960,7,7,'2019-08-21 15:10:50',1025.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 (10961,7,7,'2019-08-21 15:10:50',1025.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 (10962,7,7,'2019-08-21 15:10:50',1026.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 (10963,7,7,'2019-08-21 15:10:50',1027.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 (10964,7,7,'2019-08-21 15:10:50',1028.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 (10965,7,7,'2019-08-21 15:10:50',1028.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 (10966,7,7,'2019-08-21 15:10:50',1029.144000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10967,7,7,'2019-08-21 15:10:50',1029.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 (10968,7,7,'2019-08-21 15:10:50',1030.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 (10969,7,7,'2019-08-21 15:10:50',1031.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 (10970,7,7,'2019-08-21 15:10:50',1031.924000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10971,7,7,'2019-08-21 15:10:50',1032.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 (10972,7,7,'2019-08-21 15:10:50',1033.085000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10973,7,7,'2019-08-21 15:10:50',1033.555000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10974,7,7,'2019-08-21 15:10:50',1034.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 (10975,7,7,'2019-08-21 15:10:50',1034.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 (10976,7,7,'2019-08-21 15:10:50',1035.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 (10977,7,7,'2019-08-21 15:10:50',1036.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 (10978,7,7,'2019-08-21 15:10:50',1037.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 (10979,7,7,'2019-08-21 15:10:50',1038.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 (10980,7,7,'2019-08-21 15:10:50',1038.505000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10981,7,7,'2019-08-21 15:10:50',1039.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 (10982,7,7,'2019-08-21 15:10:50',1040.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 (10983,7,7,'2019-08-21 15:10:50',1041.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 (10984,7,7,'2019-08-21 15:10:50',1041.332000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10985,7,7,'2019-08-21 15:10:50',1041.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 (10986,7,7,'2019-08-21 15:10:50',1042.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 (10987,7,7,'2019-08-21 15:10:50',1043.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 (10988,7,7,'2019-08-21 15:10:50',1044.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 (10989,7,7,'2019-08-21 15:10:50',1044.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 (10990,7,7,'2019-08-21 15:10:50',1045.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 (10991,7,7,'2019-08-21 15:10:50',1045.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 (10992,7,7,'2019-08-21 15:10:50',1046.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 (10993,7,7,'2019-08-21 15:10:50',1047.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 (10994,7,7,'2019-08-21 15:10:50',1047.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 (10995,7,7,'2019-08-21 15:10:50',1048.357000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10996,7,7,'2019-08-21 15:10:50',1048.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 (10997,7,7,'2019-08-21 15:10:50',1049.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 (10998,7,7,'2019-08-21 15:10:50',1050.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 (10999,7,7,'2019-08-21 15:10:50',1050.637000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11000,7,7,'2019-08-21 15:10:50',1051.535000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11001,7,7,'2019-08-21 15:10:50',1052.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 (11002,7,7,'2019-08-21 15:10:50',1053.383000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11003,7,7,'2019-08-21 15:10:50',1053.656000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11004,7,7,'2019-08-21 15:10:50',1054.249000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11005,7,7,'2019-08-21 15:10:50',1055.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 (11006,7,7,'2019-08-21 15:10:50',1056.047000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11007,7,7,'2019-08-21 15:10:50',1056.829000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11008,7,7,'2019-08-21 15:10:50',1057.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 (11009,7,7,'2019-08-21 15:10:50',1057.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 (11010,7,7,'2019-08-21 15:10:50',1058.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 (11011,7,7,'2019-08-21 15:10:50',1059.219000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11012,7,7,'2019-08-21 15:10:50',1059.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 (11013,7,7,'2019-08-21 15:10:50',1060.459000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11014,7,7,'2019-08-21 15:10:50',1061.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 (11015,7,7,'2019-08-21 15:10:50',1061.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 (11016,7,7,'2019-08-21 15:10:50',1062.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 (11017,7,7,'2019-08-21 15:10:50',1063.089000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11018,7,7,'2019-08-21 15:10:50',1063.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 (11019,7,7,'2019-08-21 15:10:50',1064.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 (11020,7,7,'2019-08-21 15:10:50',1065.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 (11021,7,7,'2019-08-21 15:10:50',1066.636000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11022,7,7,'2019-08-21 15:10:50',1066.961000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11023,7,7,'2019-08-21 15:10:50',1067.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 (11024,7,7,'2019-08-21 15:10:50',1067.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 (11025,7,7,'2019-08-21 15:10:50',1068.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 (11026,7,7,'2019-08-21 15:10:50',1069.183000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11027,7,7,'2019-08-21 15:10:50',1069.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 (11028,7,7,'2019-08-21 15:10:50',1069.998000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11029,7,7,'2019-08-21 15:10:50',1070.881000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11030,7,7,'2019-08-21 15:10:50',1071.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 (11031,7,7,'2019-08-21 15:10:50',1072.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 (11032,7,7,'2019-08-21 15:10:50',1073.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 (11033,7,7,'2019-08-21 15:10:50',1073.744000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11034,7,7,'2019-08-21 15:10:50',1074.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 (11035,7,7,'2019-08-21 15:10:50',1075.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 (11036,7,7,'2019-08-21 15:10:50',1076.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 (11037,7,7,'2019-08-21 15:10:50',1076.409000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11038,7,7,'2019-08-21 15:10:50',1076.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 (11039,7,7,'2019-08-21 15:10:50',1077.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 (11040,7,7,'2019-08-21 15:10:50',1078.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 (11041,7,7,'2019-08-21 15:10:50',1078.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 (11042,7,7,'2019-08-21 15:10:50',1079.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 (11043,7,7,'2019-08-21 15:10:50',1080.471000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11044,7,7,'2019-08-21 15:10:50',1081.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 (11045,7,7,'2019-08-21 15:10:50',1081.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 (11046,7,7,'2019-08-21 15:10:50',1082.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 (11047,7,7,'2019-08-21 15:10:50',1082.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 (11048,7,7,'2019-08-21 15:10:50',1083.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 (11049,7,7,'2019-08-21 15:10:50',1084.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 (11050,7,7,'2019-08-21 15:10:50',1085.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 (11051,7,7,'2019-08-21 15:10:50',1085.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 (11052,7,7,'2019-08-21 15:10:50',1086.114000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11053,7,7,'2019-08-21 15:10:50',1087.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 (11054,7,7,'2019-08-21 15:10:50',1087.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 (11055,7,7,'2019-08-21 15:10:50',1087.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 (11056,7,7,'2019-08-21 15:10:50',1088.694000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11057,7,7,'2019-08-21 15:10:50',1089.461000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11058,7,7,'2019-08-21 15:10:50',1090.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 (11059,7,7,'2019-08-21 15:10:50',1091.159000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11060,7,7,'2019-08-21 15:10:50',1091.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 (11061,7,7,'2019-08-21 15:10:50',1091.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 (11062,7,7,'2019-08-21 15:10:50',1092.907000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11063,7,7,'2019-08-21 15:10:50',1093.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 (11064,7,7,'2019-08-21 15:10:50',1094.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 (11065,7,7,'2019-08-21 15:10:50',1094.722000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11066,7,7,'2019-08-21 15:10:50',1095.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 (11067,7,7,'2019-08-21 15:10:50',1096.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 (11068,7,7,'2019-08-21 15:10:50',1097.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 (11069,7,7,'2019-08-21 15:10:50',1097.688000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11070,7,7,'2019-08-21 15:10:50',1098.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 (11071,7,7,'2019-08-21 15:10:50',1098.697000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11072,7,7,'2019-08-21 15:10:50',1099.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 (11073,7,7,'2019-08-21 15:10:50',1100.249000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11074,7,7,'2019-08-21 15:10:50',1101.131000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11075,7,7,'2019-08-21 15:10:50',1102.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 (11076,7,7,'2019-08-21 15:10:50',1102.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 (11077,7,7,'2019-08-21 15:10:50',1103.046000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11078,7,7,'2019-08-21 15:10:50',1103.961000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11079,7,7,'2019-08-21 15:10:50',1104.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 (11080,7,7,'2019-08-21 15:10:50',1104.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 (11081,7,7,'2019-08-21 15:10:50',1105.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 (11082,7,7,'2019-08-21 15:10:50',1106.592000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11083,7,7,'2019-08-21 15:10:50',1107.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 (11084,7,7,'2019-08-21 15:10:50',1108.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 (11085,7,7,'2019-08-21 15:10:50',1109.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 (11086,7,7,'2019-08-21 15:10:50',1109.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 (11087,7,7,'2019-08-21 15:10:50',1110.121000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11088,7,7,'2019-08-21 15:10:50',1110.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 (11089,7,7,'2019-08-21 15:10:50',1111.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 (11090,7,7,'2019-08-21 15:10:50',1111.836000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11091,7,7,'2019-08-21 15:10:50',1112.602000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11092,7,7,'2019-08-21 15:10:50',1113.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 (11093,7,7,'2019-08-21 15:10:50',1114.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 (11094,7,7,'2019-08-21 15:10:50',1114.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 (11095,7,7,'2019-08-21 15:10:50',1115.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 (11096,7,7,'2019-08-21 15:10:50',1116.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 (11097,7,7,'2019-08-21 15:10:50',1116.533000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11098,7,7,'2019-08-21 15:10:50',1117.264000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11099,7,7,'2019-08-21 15:10:50',1118.263000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11100,7,7,'2019-08-21 15:10:50',1119.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 (11101,7,7,'2019-08-21 15:10:50',1119.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 (11102,7,7,'2019-08-21 15:10:50',1119.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 (11103,7,7,'2019-08-21 15:10:50',1120.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 (11104,7,7,'2019-08-21 15:10:50',1121.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 (11105,7,7,'2019-08-21 15:10:50',1122.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 (11106,7,7,'2019-08-21 15:10:50',1122.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 (11107,7,7,'2019-08-21 15:10:50',1122.923000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11108,7,7,'2019-08-21 15:10:50',1123.307000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11109,7,7,'2019-08-21 15:10:50',1124.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 (11110,7,7,'2019-08-21 15:10:50',1124.988000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11111,7,7,'2019-08-21 15:10:50',1125.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 (11112,7,7,'2019-08-21 15:10:50',1126.736000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11113,7,7,'2019-08-21 15:10:50',1127.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 (11114,7,7,'2019-08-21 15:10:50',1127.652000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11115,7,7,'2019-08-21 15:10:50',1128.081000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11116,7,7,'2019-08-21 15:10:50',1128.484000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11117,7,7,'2019-08-21 15:10:50',1128.838000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11118,7,7,'2019-08-21 15:10:50',1129.400000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11119,7,7,'2019-08-21 15:10:50',1130.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 (11120,7,7,'2019-08-21 15:10:50',1131.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 (11121,7,7,'2019-08-21 15:10:50',1132.014000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11122,7,7,'2019-08-21 15:10:50',1132.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 (11123,7,7,'2019-08-21 15:10:50',1133.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 (11124,7,7,'2019-08-21 15:10:50',1133.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 (11125,7,7,'2019-08-21 15:10:50',1134.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 (11126,7,7,'2019-08-21 15:10:50',1135.394000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11127,7,7,'2019-08-21 15:10:50',1136.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 (11128,7,7,'2019-08-21 15:10:50',1137.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 (11129,7,7,'2019-08-21 15:10:50',1137.388000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11130,7,7,'2019-08-21 15:10:50',1138.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 (11131,7,7,'2019-08-21 15:10:50',1138.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 (11132,7,7,'2019-08-21 15:10:50',1139.689000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11133,7,7,'2019-08-21 15:10:50',1139.991000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11134,7,7,'2019-08-21 15:10:50',1140.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 (11135,7,7,'2019-08-21 15:10:50',1141.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 (11136,7,7,'2019-08-21 15:10:50',1141.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 (11137,7,7,'2019-08-21 15:10:50',1142.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 (11138,7,7,'2019-08-21 15:10:50',1142.985000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11139,7,7,'2019-08-21 15:10:50',1143.784000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11140,7,7,'2019-08-21 15:10:50',1144.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 (11141,7,7,'2019-08-21 15:10:50',1144.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 (11142,7,7,'2019-08-21 15:10:50',1145.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 (11143,7,7,'2019-08-21 15:10:50',1146.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 (11144,7,7,'2019-08-21 15:10:50',1146.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 (11145,7,7,'2019-08-21 15:10:50',1147.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 (11146,7,7,'2019-08-21 15:10:50',1148.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 (11147,7,7,'2019-08-21 15:10:50',1149.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 (11148,7,7,'2019-08-21 15:10:50',1150.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 (11149,7,7,'2019-08-21 15:10:50',1150.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 (11150,7,7,'2019-08-21 15:10:50',1151.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 (11151,7,7,'2019-08-21 15:10:50',1152.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 (11152,7,7,'2019-08-21 15:10:50',1152.649000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11153,7,7,'2019-08-21 15:10:50',1153.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 (11154,7,7,'2019-08-21 15:10:50',1153.990000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11155,7,7,'2019-08-21 15:10:50',1154.806000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11156,7,7,'2019-08-21 15:10:50',1155.622000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11157,7,7,'2019-08-21 15:10:50',1156.454000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11158,7,7,'2019-08-21 15:10:50',1156.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 (11159,7,7,'2019-08-21 15:10:50',1157.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 (11160,7,7,'2019-08-21 15:10:50',1157.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 (11161,7,7,'2019-08-21 15:10:50',1158.302000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11162,7,7,'2019-08-21 15:10:50',1159.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 (11163,7,7,'2019-08-21 15:10:50',1159.483000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11164,7,7,'2019-08-21 15:10:50',1160.100000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11165,7,7,'2019-08-21 15:10:50',1161.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 (11166,7,7,'2019-08-21 15:10:50',1161.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 (11167,7,7,'2019-08-21 15:10:50',1162.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 (11168,7,7,'2019-08-21 15:10:50',1162.830000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11169,7,7,'2019-08-21 15:10:50',1163.779000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11170,7,7,'2019-08-21 15:10:50',1164.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 (11171,7,7,'2019-08-21 15:10:50',1165.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 (11172,7,7,'2019-08-21 15:10:50',1166.626000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11173,7,7,'2019-08-21 15:10:50',1167.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 (11174,7,7,'2019-08-21 15:10:50',1167.393000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11175,7,7,'2019-08-21 15:10:50',1168.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 (11176,7,7,'2019-08-21 15:10:50',1168.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 (11177,7,7,'2019-08-21 15:10:50',1169.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 (11178,7,7,'2019-08-21 15:10:50',1169.890000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11179,7,7,'2019-08-21 15:10:50',1170.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 (11180,7,7,'2019-08-21 15:10:50',1171.754000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11181,7,7,'2019-08-21 15:10:50',1172.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 (11182,7,7,'2019-08-21 15:10:50',1173.050000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11183,7,7,'2019-08-21 15:10:50',1173.585000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11184,7,7,'2019-08-21 15:10:50',1173.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 (11185,7,7,'2019-08-21 15:10:50',1174.352000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11186,7,7,'2019-08-21 15:10:50',1175.217000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11187,7,7,'2019-08-21 15:10:50',1176.083000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11188,7,7,'2019-08-21 15:10:50',1177.064000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11189,7,7,'2019-08-21 15:10:50',1177.380000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11190,7,7,'2019-08-21 15:10:50',1177.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 (11191,7,7,'2019-08-21 15:10:50',1178.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 (11192,7,7,'2019-08-21 15:10:50',1178.880000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11193,7,7,'2019-08-21 15:10:50',1179.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 (11194,7,7,'2019-08-21 15:10:50',1180.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 (11195,7,7,'2019-08-21 15:10:50',1180.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 (11196,7,7,'2019-08-21 15:10:50',1181.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 (11197,7,7,'2019-08-21 15:10:50',1182.093000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11198,7,7,'2019-08-21 15:10:50',1182.417000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11199,7,7,'2019-08-21 15:10:50',1183.059000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11200,7,7,'2019-08-21 15:10:50',1184.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 (11201,7,7,'2019-08-21 15:10:50',1184.973000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11202,7,7,'2019-08-21 15:10:50',1185.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 (11203,7,7,'2019-08-21 15:10:50',1186.838000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11204,7,7,'2019-08-21 15:10:50',1187.837000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11205,7,7,'2019-08-21 15:10:50',1188.719000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11206,7,7,'2019-08-21 15:10:50',1189.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 (11207,7,7,'2019-08-21 15:10:50',1189.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 (11208,7,7,'2019-08-21 15:10:50',1190.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 (11209,7,7,'2019-08-21 15:10:50',1190.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 (11210,7,7,'2019-08-21 15:10:50',1191.133000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11211,7,7,'2019-08-21 15:10:50',1191.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 (11212,7,7,'2019-08-21 15:10:50',1192.289000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11213,7,7,'2019-08-21 15:10:50',1192.881000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11214,7,7,'2019-08-21 15:10:50',1193.137000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11215,7,7,'2019-08-21 15:10:50',1193.830000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11216,7,7,'2019-08-21 15:10:50',1194.712000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11217,7,7,'2019-08-21 15:10:50',1195.578000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11218,7,7,'2019-08-21 15:10:50',1196.511000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11219,7,7,'2019-08-21 15:10:50',1197.276000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11220,7,7,'2019-08-21 15:10:50',1198.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 (11221,7,7,'2019-08-21 15:10:50',1199.008000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11222,7,7,'2019-08-21 15:10:50',1199.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 (11223,7,7,'2019-08-21 15:10:50',1199.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 (11224,7,7,'2019-08-21 15:10:50',1200.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 (11225,7,7,'2019-08-21 15:10:50',1200.673000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11226,8,8,'2019-08-21 15:10:59',0.902000,0.000000,NULL,NULL,NULL,NULL,'e-198',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11227,8,8,'2019-08-21 15:10:59',14.387000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11228,8,8,'2019-08-21 15:10:59',15.269000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11229,8,8,'2019-08-21 15:10:59',16.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 (11230,8,8,'2019-08-21 15:10:59',17.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 (11231,8,8,'2019-08-21 15:10:59',17.533000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11232,8,8,'2019-08-21 15:10:59',18.115000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11233,8,8,'2019-08-21 15:10:59',18.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 (11234,8,8,'2019-08-21 15:10:59',18.998000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11235,8,8,'2019-08-21 15:10:59',19.847000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11236,8,8,'2019-08-21 15:10:59',20.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 (11237,8,8,'2019-08-21 15:10:59',20.846000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11238,8,8,'2019-08-21 15:10:59',21.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 (11239,8,8,'2019-08-21 15:10:59',21.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 (11240,8,8,'2019-08-21 15:10:59',22.644000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11241,8,8,'2019-08-21 15:10:59',23.643000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11242,8,8,'2019-08-21 15:10:59',24.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 (11243,8,8,'2019-08-21 15:10:59',25.308000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11244,8,8,'2019-08-21 15:10:59',26.090000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11245,8,8,'2019-08-21 15:10:59',26.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 (11246,8,8,'2019-08-21 15:10:59',27.235000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11247,8,8,'2019-08-21 15:10:59',27.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 (11248,8,8,'2019-08-21 15:10:59',28.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 (11249,8,8,'2019-08-21 15:10:59',28.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 (11250,8,8,'2019-08-21 15:10:59',29.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 (11251,8,8,'2019-08-21 15:10:59',30.252000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11252,8,8,'2019-08-21 15:10:59',31.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 (11253,8,8,'2019-08-21 15:10:59',31.613000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11254,8,8,'2019-08-21 15:10:59',32.000000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11255,8,8,'2019-08-21 15:10:59',32.833000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11256,8,8,'2019-08-21 15:10:59',33.731000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11257,8,8,'2019-08-21 15:10:59',34.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 (11258,8,8,'2019-08-21 15:10:59',34.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 (11259,8,8,'2019-08-21 15:10:59',35.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 (11260,8,8,'2019-08-21 15:10:59',36.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 (11261,8,8,'2019-08-21 15:10:59',36.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 (11262,8,8,'2019-08-21 15:10:59',37.012000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11263,8,8,'2019-08-21 15:10:59',37.944000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11264,8,8,'2019-08-21 15:10:59',38.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 (11265,8,8,'2019-08-21 15:10:59',39.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 (11266,8,8,'2019-08-21 15:10:59',39.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 (11267,8,8,'2019-08-21 15:10:59',40.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 (11268,8,8,'2019-08-21 15:10:59',41.523000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11269,8,8,'2019-08-21 15:10:59',42.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 (11270,8,8,'2019-08-21 15:10:59',42.688000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11271,8,8,'2019-08-21 15:10:59',43.071000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11272,8,8,'2019-08-21 15:10:59',44.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 (11273,8,8,'2019-08-21 15:10:59',44.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 (11274,8,8,'2019-08-21 15:10:59',44.953000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11275,8,8,'2019-08-21 15:10:59',45.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 (11276,8,8,'2019-08-21 15:10:59',46.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 (11277,8,8,'2019-08-21 15:10:59',47.800000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11278,8,8,'2019-08-21 15:10:59',48.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 (11279,8,8,'2019-08-21 15:10:59',48.799000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11280,8,8,'2019-08-21 15:10:59',49.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 (11281,8,8,'2019-08-21 15:10:59',50.414000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11282,8,8,'2019-08-21 15:10:59',50.767000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11283,8,8,'2019-08-21 15:10:59',51.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 (11284,8,8,'2019-08-21 15:10:59',52.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 (11285,8,8,'2019-08-21 15:10:59',52.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 (11286,8,8,'2019-08-21 15:10:59',53.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 (11287,8,8,'2019-08-21 15:10:59',53.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 (11288,8,8,'2019-08-21 15:10:59',54.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 (11289,8,8,'2019-08-21 15:10:59',55.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 (11290,8,8,'2019-08-21 15:10:59',55.658000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11291,8,8,'2019-08-21 15:10:59',56.440000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11292,8,8,'2019-08-21 15:10:59',57.272000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11293,8,8,'2019-08-21 15:10:59',57.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 (11294,8,8,'2019-08-21 15:10:59',58.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 (11295,8,8,'2019-08-21 15:10:59',58.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 (11296,8,8,'2019-08-21 15:10:59',58.971000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11297,8,8,'2019-08-21 15:10:59',59.903000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11298,8,8,'2019-08-21 15:10:59',60.836000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11299,8,8,'2019-08-21 15:10:59',61.618000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11300,8,8,'2019-08-21 15:10:59',62.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 (11301,8,8,'2019-08-21 15:10:59',62.809000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11302,8,8,'2019-08-21 15:10:59',63.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 (11303,8,8,'2019-08-21 15:10:59',63.636000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11304,8,8,'2019-08-21 15:10:59',64.148000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11305,8,8,'2019-08-21 15:10:59',65.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 (11306,8,8,'2019-08-21 15:10:59',65.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 (11307,8,8,'2019-08-21 15:10:59',66.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 (11308,8,8,'2019-08-21 15:10:59',67.661000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11309,8,8,'2019-08-21 15:10:59',67.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 (11310,8,8,'2019-08-21 15:10:59',68.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 (11311,8,8,'2019-08-21 15:10:59',69.426000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11312,8,8,'2019-08-21 15:10:59',70.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 (11313,8,8,'2019-08-21 15:10:59',70.626000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11314,8,8,'2019-08-21 15:10:59',71.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 (11315,8,8,'2019-08-21 15:10:59',71.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 (11316,8,8,'2019-08-21 15:10:59',72.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 (11317,8,8,'2019-08-21 15:10:59',73.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 (11318,8,8,'2019-08-21 15:10:59',74.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 (11319,8,8,'2019-08-21 15:10:59',75.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 (11320,8,8,'2019-08-21 15:10:59',75.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 (11321,8,8,'2019-08-21 15:10:59',76.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 (11322,8,8,'2019-08-21 15:10:59',76.637000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11323,8,8,'2019-08-21 15:10:59',77.234000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11324,8,8,'2019-08-21 15:10:59',77.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 (11325,8,8,'2019-08-21 15:10:59',78.217000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11326,8,8,'2019-08-21 15:10:59',79.016000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11327,8,8,'2019-08-21 15:10:59',79.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 (11328,8,8,'2019-08-21 15:10:59',80.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 (11329,8,8,'2019-08-21 15:10:59',81.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 (11330,8,8,'2019-08-21 15:10:59',81.696000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11331,8,8,'2019-08-21 15:10:59',82.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 (11332,8,8,'2019-08-21 15:10:59',83.294000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11333,8,8,'2019-08-21 15:10:59',83.637000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11334,8,8,'2019-08-21 15:10:59',84.061000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11335,8,8,'2019-08-21 15:10:59',84.959000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11336,8,8,'2019-08-21 15:10:59',85.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 (11337,8,8,'2019-08-21 15:10:59',85.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 (11338,8,8,'2019-08-21 15:10:59',86.808000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11339,8,8,'2019-08-21 15:10:59',87.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 (11340,8,8,'2019-08-21 15:10:59',88.438000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11341,8,8,'2019-08-21 15:10:59',89.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 (11342,8,8,'2019-08-21 15:10:59',90.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 (11343,8,8,'2019-08-21 15:10:59',90.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 (11344,8,8,'2019-08-21 15:10:59',91.219000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11345,8,8,'2019-08-21 15:10:59',91.533000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11346,8,8,'2019-08-21 15:10:59',92.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 (11347,8,8,'2019-08-21 15:10:59',92.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 (11348,8,8,'2019-08-21 15:10:59',93.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 (11349,8,8,'2019-08-21 15:10:59',93.750000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11350,8,8,'2019-08-21 15:10:59',94.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 (11351,8,8,'2019-08-21 15:10:59',94.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 (11352,8,8,'2019-08-21 15:10:59',95.664000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11353,8,8,'2019-08-21 15:10:59',96.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 (11354,8,8,'2019-08-21 15:10:59',97.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 (11355,8,8,'2019-08-21 15:10:59',98.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 (11356,8,8,'2019-08-21 15:10:59',99.294000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11357,8,8,'2019-08-21 15:10:59',99.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 (11358,8,8,'2019-08-21 15:10:59',100.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 (11359,8,8,'2019-08-21 15:10:59',101.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 (11360,8,8,'2019-08-21 15:10:59',101.808000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11361,8,8,'2019-08-21 15:10:59',102.144000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11362,8,8,'2019-08-21 15:10:59',102.790000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11363,8,8,'2019-08-21 15:10:59',103.688000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11364,8,8,'2019-08-21 15:10:59',104.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 (11365,8,8,'2019-08-21 15:10:59',104.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 (11366,8,8,'2019-08-21 15:10:59',105.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 (11367,8,8,'2019-08-21 15:10:59',106.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 (11368,8,8,'2019-08-21 15:10:59',107.235000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11369,8,8,'2019-08-21 15:10:59',107.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 (11370,8,8,'2019-08-21 15:10:59',108.001000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11371,8,8,'2019-08-21 15:10:59',108.933000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11372,8,8,'2019-08-21 15:10:59',109.782000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11373,8,8,'2019-08-21 15:10:59',110.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 (11374,8,8,'2019-08-21 15:10:59',110.781000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11375,8,8,'2019-08-21 15:10:59',111.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 (11376,8,8,'2019-08-21 15:10:59',111.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 (11377,8,8,'2019-08-21 15:10:59',112.329000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11378,8,8,'2019-08-21 15:10:59',113.312000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11379,8,8,'2019-08-21 15:10:59',114.228000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11380,8,8,'2019-08-21 15:10:59',114.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 (11381,8,8,'2019-08-21 15:10:59',115.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 (11382,8,8,'2019-08-21 15:10:59',116.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 (11383,8,8,'2019-08-21 15:10:59',117.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 (11384,8,8,'2019-08-21 15:10:59',117.505000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11385,8,8,'2019-08-21 15:10:59',118.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 (11386,8,8,'2019-08-21 15:10:59',119.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 (11387,8,8,'2019-08-21 15:10:59',120.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 (11388,8,8,'2019-08-21 15:10:59',120.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 (11389,8,8,'2019-08-21 15:10:59',121.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 (11390,8,8,'2019-08-21 15:10:59',121.652000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11391,8,8,'2019-08-21 15:10:59',122.435000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11392,8,8,'2019-08-21 15:10:59',122.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 (11393,8,8,'2019-08-21 15:10:59',123.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 (11394,8,8,'2019-08-21 15:10:59',124.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 (11395,8,8,'2019-08-21 15:10:59',125.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 (11396,8,8,'2019-08-21 15:10:59',125.433000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11397,8,8,'2019-08-21 15:10:59',125.998000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11398,8,8,'2019-08-21 15:10:59',126.270000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11399,8,8,'2019-08-21 15:10:59',126.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 (11400,8,8,'2019-08-21 15:10:59',127.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 (11401,8,8,'2019-08-21 15:10:59',128.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 (11402,8,8,'2019-08-21 15:10:59',129.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 (11403,8,8,'2019-08-21 15:10:59',130.526000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11404,8,8,'2019-08-21 15:10:59',131.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 (11405,8,8,'2019-08-21 15:10:59',131.665000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11406,8,8,'2019-08-21 15:10:59',132.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 (11407,8,8,'2019-08-21 15:10:59',133.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 (11408,8,8,'2019-08-21 15:10:59',133.906000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11409,8,8,'2019-08-21 15:10:59',134.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 (11410,8,8,'2019-08-21 15:10:59',135.074000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11411,8,8,'2019-08-21 15:10:59',135.620000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11412,8,8,'2019-08-21 15:10:59',136.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 (11413,8,8,'2019-08-21 15:10:59',136.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 (11414,8,8,'2019-08-21 15:10:59',136.729000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11415,8,8,'2019-08-21 15:10:59',137.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 (11416,8,8,'2019-08-21 15:10:59',138.135000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11417,8,8,'2019-08-21 15:10:59',138.900000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11418,8,8,'2019-08-21 15:10:59',139.800000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11419,8,8,'2019-08-21 15:10:59',140.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 (11420,8,8,'2019-08-21 15:10:59',141.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 (11421,8,8,'2019-08-21 15:10:59',142.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 (11422,8,8,'2019-08-21 15:10:59',142.921000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11423,8,8,'2019-08-21 15:10:59',143.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 (11424,8,8,'2019-08-21 15:10:59',144.261000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11425,8,8,'2019-08-21 15:10:59',145.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 (11426,8,8,'2019-08-21 15:10:59',145.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 (11427,8,8,'2019-08-21 15:10:59',146.093000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11428,8,8,'2019-08-21 15:10:59',146.875000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11429,8,8,'2019-08-21 15:10:59',147.657000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11430,8,8,'2019-08-21 15:10:59',147.944000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11431,8,8,'2019-08-21 15:10:59',148.474000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11432,8,8,'2019-08-21 15:10:59',149.405000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11433,8,8,'2019-08-21 15:10:59',150.222000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11434,8,8,'2019-08-21 15:10:59',150.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 (11435,8,8,'2019-08-21 15:10:59',150.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 (11436,8,8,'2019-08-21 15:10:59',151.373000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11437,8,8,'2019-08-21 15:10:59',151.886000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11438,8,8,'2019-08-21 15:10:59',152.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 (11439,8,8,'2019-08-21 15:10:59',152.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 (11440,8,8,'2019-08-21 15:10:59',153.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 (11441,8,8,'2019-08-21 15:10:59',154.417000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11442,8,8,'2019-08-21 15:10:59',155.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 (11443,8,8,'2019-08-21 15:10:59',156.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 (11444,8,8,'2019-08-21 15:10:59',156.831000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11445,8,8,'2019-08-21 15:10:59',157.143000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11446,8,8,'2019-08-21 15:10:59',157.763000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11447,8,8,'2019-08-21 15:10:59',158.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 (11448,8,8,'2019-08-21 15:10:59',159.328000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11449,8,8,'2019-08-21 15:10:59',160.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 (11450,8,8,'2019-08-21 15:10:59',160.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 (11451,8,8,'2019-08-21 15:10:59',161.176000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11452,8,8,'2019-08-21 15:10:59',162.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 (11453,8,8,'2019-08-21 15:10:59',162.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 (11454,8,8,'2019-08-21 15:10:59',163.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 (11455,8,8,'2019-08-21 15:10:59',164.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 (11456,8,8,'2019-08-21 15:10:59',164.822000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11457,8,8,'2019-08-21 15:10:59',165.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 (11458,8,8,'2019-08-21 15:10:59',165.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 (11459,8,8,'2019-08-21 15:10:59',166.437000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11460,8,8,'2019-08-21 15:10:59',167.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 (11461,8,8,'2019-08-21 15:10:59',167.723000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11462,8,8,'2019-08-21 15:10:59',168.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 (11463,8,8,'2019-08-21 15:10:59',169.284000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11464,8,8,'2019-08-21 15:10:59',170.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 (11465,8,8,'2019-08-21 15:10:59',171.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 (11466,8,8,'2019-08-21 15:10:59',171.565000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11467,8,8,'2019-08-21 15:10:59',172.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 (11468,8,8,'2019-08-21 15:10:59',172.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 (11469,8,8,'2019-08-21 15:10:59',172.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 (11470,8,8,'2019-08-21 15:10:59',173.779000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11471,8,8,'2019-08-21 15:10:59',174.744000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11472,8,8,'2019-08-21 15:10:59',175.511000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11473,8,8,'2019-08-21 15:10:59',176.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 (11474,8,8,'2019-08-21 15:10:59',176.648000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11475,8,8,'2019-08-21 15:10:59',177.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 (11476,8,8,'2019-08-21 15:10:59',177.436000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11477,8,8,'2019-08-21 15:10:59',178.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 (11478,8,8,'2019-08-21 15:10:59',178.990000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11479,8,8,'2019-08-21 15:10:59',179.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 (11480,8,8,'2019-08-21 15:10:59',180.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 (11481,8,8,'2019-08-21 15:10:59',181.604000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11482,8,8,'2019-08-21 15:10:59',181.923000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11483,8,8,'2019-08-21 15:10:59',182.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 (11484,8,8,'2019-08-21 15:10:59',183.418000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11485,8,8,'2019-08-21 15:10:59',183.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 (11486,8,8,'2019-08-21 15:10:59',184.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 (11487,8,8,'2019-08-21 15:10:59',185.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 (11488,8,8,'2019-08-21 15:10:59',185.635000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11489,8,8,'2019-08-21 15:10:59',186.165000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11490,8,8,'2019-08-21 15:10:59',186.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 (11491,8,8,'2019-08-21 15:10:59',187.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 (11492,8,8,'2019-08-21 15:10:59',188.779000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11493,8,8,'2019-08-21 15:10:59',189.135000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11494,8,8,'2019-08-21 15:10:59',189.695000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11495,8,8,'2019-08-21 15:10:59',190.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 (11496,8,8,'2019-08-21 15:10:59',190.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 (11497,8,8,'2019-08-21 15:10:59',191.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 (11498,8,8,'2019-08-21 15:10:59',192.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 (11499,8,8,'2019-08-21 15:10:59',192.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 (11500,8,8,'2019-08-21 15:10:59',193.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 (11501,8,8,'2019-08-21 15:10:59',194.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 (11502,8,8,'2019-08-21 15:10:59',194.573000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11503,8,8,'2019-08-21 15:10:59',194.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 (11504,8,8,'2019-08-21 15:10:59',195.572000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11505,8,8,'2019-08-21 15:10:59',196.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 (11506,8,8,'2019-08-21 15:10:59',197.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 (11507,8,8,'2019-08-21 15:10:59',198.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 (11508,8,8,'2019-08-21 15:10:59',198.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 (11509,8,8,'2019-08-21 15:10:59',199.068000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11510,8,8,'2019-08-21 15:10:59',199.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 (11511,8,8,'2019-08-21 15:10:59',200.249000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11512,8,8,'2019-08-21 15:10:59',200.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 (11513,8,8,'2019-08-21 15:10:59',201.648000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11514,8,8,'2019-08-21 15:10:59',202.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 (11515,8,8,'2019-08-21 15:10:59',203.547000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11516,8,8,'2019-08-21 15:10:59',203.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 (11517,8,8,'2019-08-21 15:10:59',204.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 (11518,8,8,'2019-08-21 15:10:59',205.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 (11519,8,8,'2019-08-21 15:10:59',205.807000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11520,8,8,'2019-08-21 15:10:59',206.493000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11521,8,8,'2019-08-21 15:10:59',207.426000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11522,8,8,'2019-08-21 15:10:59',208.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 (11523,8,8,'2019-08-21 15:10:59',209.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 (11524,8,8,'2019-08-21 15:10:59',209.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 (11525,8,8,'2019-08-21 15:10:59',210.305000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11526,8,8,'2019-08-21 15:10:59',210.788000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11527,8,8,'2019-08-21 15:10:59',211.555000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11528,8,8,'2019-08-21 15:10:59',212.387000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11529,8,8,'2019-08-21 15:10:59',212.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 (11530,8,8,'2019-08-21 15:10:59',213.286000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11531,8,8,'2019-08-21 15:10:59',214.251000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11532,8,8,'2019-08-21 15:10:59',214.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 (11533,8,8,'2019-08-21 15:10:59',215.233000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11534,8,8,'2019-08-21 15:10:59',216.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 (11535,8,8,'2019-08-21 15:10:59',216.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 (11536,8,8,'2019-08-21 15:10:59',217.831000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11537,8,8,'2019-08-21 15:10:59',218.663000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11538,8,8,'2019-08-21 15:10:59',218.979000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11539,8,8,'2019-08-21 15:10:59',219.662000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11540,8,8,'2019-08-21 15:10:59',220.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 (11541,8,8,'2019-08-21 15:10:59',221.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 (11542,8,8,'2019-08-21 15:10:59',221.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 (11543,8,8,'2019-08-21 15:10:59',222.176000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11544,8,8,'2019-08-21 15:10:59',223.108000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11545,8,8,'2019-08-21 15:10:59',223.427000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11546,8,8,'2019-08-21 15:10:59',224.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 (11547,8,8,'2019-08-21 15:10:59',224.807000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11548,8,8,'2019-08-21 15:10:59',225.171000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11549,8,8,'2019-08-21 15:10:59',225.639000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11550,8,8,'2019-08-21 15:10:59',226.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 (11551,8,8,'2019-08-21 15:10:59',227.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 (11552,8,8,'2019-08-21 15:10:59',228.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 (11553,8,8,'2019-08-21 15:10:59',229.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 (11554,8,8,'2019-08-21 15:10:59',229.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 (11555,8,8,'2019-08-21 15:10:59',229.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 (11556,8,8,'2019-08-21 15:10:59',230.800000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11557,8,8,'2019-08-21 15:10:59',231.649000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11558,8,8,'2019-08-21 15:10:59',232.665000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11559,8,8,'2019-08-21 15:10:59',233.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 (11560,8,8,'2019-08-21 15:10:59',233.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 (11561,8,8,'2019-08-21 15:10:59',234.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 (11562,8,8,'2019-08-21 15:10:59',234.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 (11563,8,8,'2019-08-21 15:10:59',235.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 (11564,8,8,'2019-08-21 15:10:59',236.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 (11565,8,8,'2019-08-21 15:10:59',236.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 (11566,8,8,'2019-08-21 15:10:59',237.076000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11567,8,8,'2019-08-21 15:10:59',238.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 (11568,8,8,'2019-08-21 15:10:59',239.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 (11569,8,8,'2019-08-21 15:10:59',239.382000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11570,8,8,'2019-08-21 15:10:59',239.990000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11571,8,8,'2019-08-21 15:10:59',240.839000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11572,8,8,'2019-08-21 15:10:59',241.197000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11573,8,8,'2019-08-21 15:10:59',241.638000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11574,8,8,'2019-08-21 15:10:59',242.421000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11575,8,8,'2019-08-21 15:10:59',243.203000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11576,8,8,'2019-08-21 15:10:59',244.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 (11577,8,8,'2019-08-21 15:10:59',245.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 (11578,8,8,'2019-08-21 15:10:59',245.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 (11579,8,8,'2019-08-21 15:10:59',245.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 (11580,8,8,'2019-08-21 15:10:59',246.311000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11581,8,8,'2019-08-21 15:10:59',246.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 (11582,8,8,'2019-08-21 15:10:59',247.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 (11583,8,8,'2019-08-21 15:10:59',248.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 (11584,8,8,'2019-08-21 15:10:59',249.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 (11585,8,8,'2019-08-21 15:10:59',250.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 (11586,8,8,'2019-08-21 15:10:59',250.495000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11587,8,8,'2019-08-21 15:10:59',251.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 (11588,8,8,'2019-08-21 15:10:59',252.343000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11589,8,8,'2019-08-21 15:10:59',253.226000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11590,8,8,'2019-08-21 15:10:59',254.191000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11591,8,8,'2019-08-21 15:10:59',255.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 (11592,8,8,'2019-08-21 15:10:59',255.579000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11593,8,8,'2019-08-21 15:10:59',256.006000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11594,8,8,'2019-08-21 15:10:59',256.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 (11595,8,8,'2019-08-21 15:10:59',256.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 (11596,8,8,'2019-08-21 15:10:59',257.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 (11597,8,8,'2019-08-21 15:10:59',257.737000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11598,8,8,'2019-08-21 15:10:59',258.569000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11599,8,8,'2019-08-21 15:10:59',259.502000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11600,8,8,'2019-08-21 15:10:59',260.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 (11601,8,8,'2019-08-21 15:10:59',260.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 (11602,8,8,'2019-08-21 15:10:59',261.267000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11603,8,8,'2019-08-21 15:10:59',262.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 (11604,8,8,'2019-08-21 15:10:59',262.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 (11605,8,8,'2019-08-21 15:10:59',263.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 (11606,8,8,'2019-08-21 15:10:59',263.831000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11607,8,8,'2019-08-21 15:10:59',264.630000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11608,8,8,'2019-08-21 15:10:59',264.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 (11609,8,8,'2019-08-21 15:10:59',265.579000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11610,8,8,'2019-08-21 15:10:59',266.577000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11611,8,8,'2019-08-21 15:10:59',267.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 (11612,8,8,'2019-08-21 15:10:59',268.343000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11613,8,8,'2019-08-21 15:10:59',269.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 (11614,8,8,'2019-08-21 15:10:59',270.323000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11615,8,8,'2019-08-21 15:10:59',270.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 (11616,8,8,'2019-08-21 15:10:59',271.322000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11617,8,8,'2019-08-21 15:10:59',272.255000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11618,8,8,'2019-08-21 15:10:59',272.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 (11619,8,8,'2019-08-21 15:10:59',273.153000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11620,8,8,'2019-08-21 15:10:59',274.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 (11621,8,8,'2019-08-21 15:10:59',274.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 (11622,8,8,'2019-08-21 15:10:59',275.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 (11623,8,8,'2019-08-21 15:10:59',275.367000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11624,8,8,'2019-08-21 15:10:59',275.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 (11625,8,8,'2019-08-21 15:10:59',276.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 (11626,8,8,'2019-08-21 15:10:59',277.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 (11627,8,8,'2019-08-21 15:10:59',289.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 (11628,8,8,'2019-08-21 15:10:59',289.902000,0.000000,NULL,NULL,NULL,NULL,'e-198',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11629,8,8,'2019-08-21 15:10:59',306.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 (11630,8,8,'2019-08-21 15:10:59',307.817000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11631,8,8,'2019-08-21 15:10:59',308.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 (11632,8,8,'2019-08-21 15:10:59',309.615000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11633,8,8,'2019-08-21 15:10:59',309.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 (11634,8,8,'2019-08-21 15:10:59',310.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 (11635,8,8,'2019-08-21 15:10:59',310.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 (11636,8,8,'2019-08-21 15:10:59',311.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 (11637,8,8,'2019-08-21 15:10:59',312.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 (11638,8,8,'2019-08-21 15:10:59',313.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 (11639,8,8,'2019-08-21 15:10:59',314.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 (11640,8,8,'2019-08-21 15:10:59',315.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 (11641,8,8,'2019-08-21 15:10:59',315.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 (11642,8,8,'2019-08-21 15:10:59',315.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 (11643,8,8,'2019-08-21 15:10:59',316.808000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11644,8,8,'2019-08-21 15:10:59',317.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 (11645,8,8,'2019-08-21 15:10:59',317.739000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11646,8,8,'2019-08-21 15:10:59',318.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 (11647,8,8,'2019-08-21 15:10:59',318.954000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11648,8,8,'2019-08-21 15:10:59',319.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 (11649,8,8,'2019-08-21 15:10:59',320.553000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11650,8,8,'2019-08-21 15:10:59',320.921000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11651,8,8,'2019-08-21 15:10:59',321.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 (11652,8,8,'2019-08-21 15:10:59',322.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 (11653,8,8,'2019-08-21 15:10:59',323.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 (11654,8,8,'2019-08-21 15:10:59',324.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 (11655,8,8,'2019-08-21 15:10:59',324.932000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11656,8,8,'2019-08-21 15:10:59',325.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 (11657,8,8,'2019-08-21 15:10:59',325.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 (11658,8,8,'2019-08-21 15:10:59',326.215000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11659,8,8,'2019-08-21 15:10:59',326.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 (11660,8,8,'2019-08-21 15:10:59',327.612000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11661,8,8,'2019-08-21 15:10:59',328.428000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11662,8,8,'2019-08-21 15:10:59',328.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 (11663,8,8,'2019-08-21 15:10:59',329.327000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11664,8,8,'2019-08-21 15:10:59',330.192000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11665,8,8,'2019-08-21 15:10:59',330.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 (11666,8,8,'2019-08-21 15:10:59',330.975000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11667,8,8,'2019-08-21 15:10:59',331.924000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11668,8,8,'2019-08-21 15:10:59',332.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 (11669,8,8,'2019-08-21 15:10:59',333.639000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11670,8,8,'2019-08-21 15:10:59',334.638000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11671,8,8,'2019-08-21 15:10:59',335.040000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11672,8,8,'2019-08-21 15:10:59',335.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 (11673,8,8,'2019-08-21 15:10:59',336.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 (11674,8,8,'2019-08-21 15:10:59',336.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 (11675,8,8,'2019-08-21 15:10:59',337.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 (11676,8,8,'2019-08-21 15:10:59',338.250000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11677,8,8,'2019-08-21 15:10:59',339.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 (11678,8,8,'2019-08-21 15:10:59',339.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 (11679,8,8,'2019-08-21 15:10:59',340.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 (11680,8,8,'2019-08-21 15:10:59',340.980000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11681,8,8,'2019-08-21 15:10:59',341.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 (11682,8,8,'2019-08-21 15:10:59',342.579000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11683,8,8,'2019-08-21 15:10:59',342.937000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11684,8,8,'2019-08-21 15:10:59',343.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 (11685,8,8,'2019-08-21 15:10:59',344.261000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11686,8,8,'2019-08-21 15:10:59',344.731000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11687,8,8,'2019-08-21 15:10:59',345.126000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11688,8,8,'2019-08-21 15:10:59',345.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 (11689,8,8,'2019-08-21 15:10:59',345.959000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11690,8,8,'2019-08-21 15:10:59',346.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 (11691,8,8,'2019-08-21 15:10:59',347.707000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11692,8,8,'2019-08-21 15:10:59',348.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 (11693,8,8,'2019-08-21 15:10:59',349.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 (11694,8,8,'2019-08-21 15:10:59',349.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 (11695,8,8,'2019-08-21 15:10:59',350.304000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11696,8,8,'2019-08-21 15:10:59',351.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 (11697,8,8,'2019-08-21 15:10:59',351.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 (11698,8,8,'2019-08-21 15:10:59',352.296000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11699,8,8,'2019-08-21 15:10:59',352.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 (11700,8,8,'2019-08-21 15:10:59',353.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 (11701,8,8,'2019-08-21 15:10:59',354.416000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11702,8,8,'2019-08-21 15:10:59',355.232000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11703,8,8,'2019-08-21 15:10:59',356.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 (11704,8,8,'2019-08-21 15:10:59',356.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 (11705,8,8,'2019-08-21 15:10:59',357.047000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11706,8,8,'2019-08-21 15:10:59',357.439000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11707,8,8,'2019-08-21 15:10:59',357.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 (11708,8,8,'2019-08-21 15:10:59',358.661000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11709,8,8,'2019-08-21 15:10:59',359.494000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11710,8,8,'2019-08-21 15:10:59',360.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 (11711,8,8,'2019-08-21 15:10:59',360.868000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11712,8,8,'2019-08-21 15:10:59',361.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 (11713,8,8,'2019-08-21 15:10:59',362.241000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11714,8,8,'2019-08-21 15:10:59',363.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 (11715,8,8,'2019-08-21 15:10:59',364.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 (11716,8,8,'2019-08-21 15:10:59',364.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 (11717,8,8,'2019-08-21 15:10:59',364.921000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11718,8,8,'2019-08-21 15:10:59',365.346000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11719,8,8,'2019-08-21 15:10:59',365.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 (11720,8,8,'2019-08-21 15:10:59',366.152000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11721,8,8,'2019-08-21 15:10:59',366.736000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11722,8,8,'2019-08-21 15:10:59',367.535000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11723,8,8,'2019-08-21 15:10:59',368.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 (11724,8,8,'2019-08-21 15:10:59',369.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 (11725,8,8,'2019-08-21 15:10:59',370.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 (11726,8,8,'2019-08-21 15:10:59',371.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 (11727,8,8,'2019-08-21 15:10:59',371.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 (11728,8,8,'2019-08-21 15:10:59',371.897000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11729,8,8,'2019-08-21 15:10:59',372.335000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11730,8,8,'2019-08-21 15:10:59',372.779000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11731,8,8,'2019-08-21 15:10:59',373.612000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11732,8,8,'2019-08-21 15:10:59',374.577000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11733,8,8,'2019-08-21 15:10:59',375.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 (11734,8,8,'2019-08-21 15:10:59',376.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 (11735,8,8,'2019-08-21 15:10:59',377.357000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11736,8,8,'2019-08-21 15:10:59',378.290000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11737,8,8,'2019-08-21 15:10:59',378.658000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11738,8,8,'2019-08-21 15:10:59',379.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 (11739,8,8,'2019-08-21 15:10:59',379.889000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11740,8,8,'2019-08-21 15:10:59',380.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 (11741,8,8,'2019-08-21 15:10:59',380.754000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11742,8,8,'2019-08-21 15:10:59',381.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 (11743,8,8,'2019-08-21 15:10:59',382.067000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11744,8,8,'2019-08-21 15:10:59',382.568000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11745,8,8,'2019-08-21 15:10:59',383.501000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11746,8,8,'2019-08-21 15:10:59',384.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 (11747,8,8,'2019-08-21 15:10:59',384.729000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11748,8,8,'2019-08-21 15:10:59',385.133000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11749,8,8,'2019-08-21 15:10:59',385.948000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11750,8,8,'2019-08-21 15:10:59',386.848000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11751,8,8,'2019-08-21 15:10:59',387.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 (11752,8,8,'2019-08-21 15:10:59',388.189000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11753,8,8,'2019-08-21 15:10:59',388.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 (11754,8,8,'2019-08-21 15:10:59',389.127000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11755,8,8,'2019-08-21 15:10:59',389.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 (11756,8,8,'2019-08-21 15:10:59',390.677000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11757,8,8,'2019-08-21 15:10:59',391.676000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11758,8,8,'2019-08-21 15:10:59',392.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 (11759,8,8,'2019-08-21 15:10:59',392.959000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11760,8,8,'2019-08-21 15:10:59',393.490000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11761,8,8,'2019-08-21 15:10:59',394.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 (11762,8,8,'2019-08-21 15:10:59',395.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 (11763,8,8,'2019-08-21 15:10:59',396.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 (11764,8,8,'2019-08-21 15:10:59',396.590000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11765,8,8,'2019-08-21 15:10:59',397.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 (11766,8,8,'2019-08-21 15:10:59',397.468000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11767,8,8,'2019-08-21 15:10:59',398.052000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11768,8,8,'2019-08-21 15:10:59',398.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 (11769,8,8,'2019-08-21 15:10:59',399.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 (11770,8,8,'2019-08-21 15:10:59',399.866000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11771,8,8,'2019-08-21 15:10:59',400.832000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11772,8,8,'2019-08-21 15:10:59',401.731000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11773,8,8,'2019-08-21 15:10:59',402.680000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11774,8,8,'2019-08-21 15:10:59',402.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 (11775,8,8,'2019-08-21 15:10:59',403.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 (11776,8,8,'2019-08-21 15:10:59',404.495000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11777,8,8,'2019-08-21 15:10:59',404.910000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11778,8,8,'2019-08-21 15:10:59',405.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 (11779,8,8,'2019-08-21 15:10:59',406.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 (11780,8,8,'2019-08-21 15:10:59',407.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 (11781,8,8,'2019-08-21 15:10:59',408.091000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11782,8,8,'2019-08-21 15:10:59',408.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 (11783,8,8,'2019-08-21 15:10:59',408.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 (11784,8,8,'2019-08-21 15:10:59',409.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 (11785,8,8,'2019-08-21 15:10:59',410.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 (11786,8,8,'2019-08-21 15:10:59',411.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 (11787,8,8,'2019-08-21 15:10:59',412.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 (11788,8,8,'2019-08-21 15:10:59',412.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 (11789,8,8,'2019-08-21 15:10:59',413.552000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11790,8,8,'2019-08-21 15:10:59',414.351000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11791,8,8,'2019-08-21 15:10:59',414.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 (11792,8,8,'2019-08-21 15:10:59',415.149000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11793,8,8,'2019-08-21 15:10:59',415.949000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11794,8,8,'2019-08-21 15:10:59',416.915000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11795,8,8,'2019-08-21 15:10:59',417.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 (11796,8,8,'2019-08-21 15:10:59',417.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 (11797,8,8,'2019-08-21 15:10:59',418.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 (11798,8,8,'2019-08-21 15:10:59',419.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 (11799,8,8,'2019-08-21 15:10:59',419.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 (11800,8,8,'2019-08-21 15:10:59',419.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 (11801,8,8,'2019-08-21 15:10:59',420.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 (11802,8,8,'2019-08-21 15:10:59',421.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 (11803,8,8,'2019-08-21 15:10:59',422.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 (11804,8,8,'2019-08-21 15:10:59',423.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 (11805,8,8,'2019-08-21 15:10:59',424.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 (11806,8,8,'2019-08-21 15:10:59',425.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 (11807,8,8,'2019-08-21 15:10:59',425.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 (11808,8,8,'2019-08-21 15:10:59',425.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 (11809,8,8,'2019-08-21 15:10:59',426.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 (11810,8,8,'2019-08-21 15:10:59',426.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 (11811,8,8,'2019-08-21 15:10:59',427.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 (11812,8,8,'2019-08-21 15:10:59',428.318000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11813,8,8,'2019-08-21 15:10:59',429.301000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11814,8,8,'2019-08-21 15:10:59',430.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 (11815,8,8,'2019-08-21 15:10:59',431.016000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11816,8,8,'2019-08-21 15:10:59',431.384000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11817,8,8,'2019-08-21 15:10:59',431.965000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11818,8,8,'2019-08-21 15:10:59',432.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 (11819,8,8,'2019-08-21 15:10:59',433.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 (11820,8,8,'2019-08-21 15:10:59',434.127000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11821,8,8,'2019-08-21 15:10:59',434.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 (11822,8,8,'2019-08-21 15:10:59',435.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 (11823,8,8,'2019-08-21 15:10:59',436.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 (11824,8,8,'2019-08-21 15:10:59',436.643000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11825,8,8,'2019-08-21 15:10:59',437.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 (11826,8,8,'2019-08-21 15:10:59',437.409000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11827,8,8,'2019-08-21 15:10:59',438.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 (11828,8,8,'2019-08-21 15:10:59',439.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 (11829,8,8,'2019-08-21 15:10:59',440.173000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11830,8,8,'2019-08-21 15:10:59',440.602000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11831,8,8,'2019-08-21 15:10:59',441.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 (11832,8,8,'2019-08-21 15:10:59',441.971000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11833,8,8,'2019-08-21 15:10:59',442.937000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11834,8,8,'2019-08-21 15:10:59',443.735000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11835,8,8,'2019-08-21 15:10:59',444.584000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11836,8,8,'2019-08-21 15:10:59',444.959000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11837,8,8,'2019-08-21 15:10:59',445.384000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11838,8,8,'2019-08-21 15:10:59',446.232000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11839,8,8,'2019-08-21 15:10:59',447.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 (11840,8,8,'2019-08-21 15:10:59',447.530000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11841,8,8,'2019-08-21 15:10:59',447.914000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11842,8,8,'2019-08-21 15:10:59',448.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 (11843,8,8,'2019-08-21 15:10:59',449.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 (11844,8,8,'2019-08-21 15:10:59',449.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 (11845,8,8,'2019-08-21 15:10:59',450.545000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11846,8,8,'2019-08-21 15:10:59',450.960000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11847,8,8,'2019-08-21 15:10:59',451.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 (11848,8,8,'2019-08-21 15:10:59',451.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 (11849,8,8,'2019-08-21 15:10:59',452.343000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11850,8,8,'2019-08-21 15:10:59',453.342000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11851,8,8,'2019-08-21 15:10:59',454.207000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11852,8,8,'2019-08-21 15:10:59',455.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 (11853,8,8,'2019-08-21 15:10:59',455.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 (11854,8,8,'2019-08-21 15:10:59',456.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 (11855,8,8,'2019-08-21 15:10:59',457.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 (11856,8,8,'2019-08-21 15:10:59',458.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 (11857,8,8,'2019-08-21 15:10:59',459.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 (11858,8,8,'2019-08-21 15:10:59',459.784000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11859,8,8,'2019-08-21 15:10:59',460.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 (11860,8,8,'2019-08-21 15:10:59',460.722000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11861,8,8,'2019-08-21 15:10:59',461.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 (11862,8,8,'2019-08-21 15:10:59',462.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 (11863,8,8,'2019-08-21 15:10:59',462.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 (11864,8,8,'2019-08-21 15:10:59',463.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 (11865,8,8,'2019-08-21 15:10:59',463.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 (11866,8,8,'2019-08-21 15:10:59',464.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 (11867,8,8,'2019-08-21 15:10:59',465.528000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11868,8,8,'2019-08-21 15:10:59',465.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 (11869,8,8,'2019-08-21 15:10:59',466.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 (11870,8,8,'2019-08-21 15:10:59',467.243000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11871,8,8,'2019-08-21 15:10:59',468.108000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11872,8,8,'2019-08-21 15:10:59',468.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 (11873,8,8,'2019-08-21 15:10:59',468.975000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11874,8,8,'2019-08-21 15:10:59',469.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 (11875,8,8,'2019-08-21 15:10:59',470.122000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11876,8,8,'2019-08-21 15:10:59',470.706000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11877,8,8,'2019-08-21 15:10:59',471.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 (11878,8,8,'2019-08-21 15:10:59',472.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 (11879,8,8,'2019-08-21 15:10:59',473.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 (11880,8,8,'2019-08-21 15:10:59',474.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 (11881,8,8,'2019-08-21 15:10:59',474.660000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11882,8,8,'2019-08-21 15:10:59',475.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 (11883,8,8,'2019-08-21 15:10:59',476.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 (11884,8,8,'2019-08-21 15:10:59',476.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 (11885,8,8,'2019-08-21 15:10:59',476.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 (11886,8,8,'2019-08-21 15:10:59',477.453000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11887,8,8,'2019-08-21 15:10:59',477.814000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11888,8,8,'2019-08-21 15:10:59',478.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 (11889,8,8,'2019-08-21 15:10:59',479.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 (11890,8,8,'2019-08-21 15:10:59',480.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 (11891,8,8,'2019-08-21 15:10:59',480.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 (11892,8,8,'2019-08-21 15:10:59',481.311000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11893,8,8,'2019-08-21 15:10:59',482.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 (11894,8,8,'2019-08-21 15:10:59',483.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 (11895,8,8,'2019-08-21 15:10:59',484.008000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11896,8,8,'2019-08-21 15:10:59',484.352000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11897,8,8,'2019-08-21 15:10:59',484.957000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11898,8,8,'2019-08-21 15:10:59',485.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 (11899,8,8,'2019-08-21 15:10:59',485.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 (11900,8,8,'2019-08-21 15:10:59',486.738000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11901,8,8,'2019-08-21 15:10:59',487.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 (11902,8,8,'2019-08-21 15:10:59',487.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 (11903,8,8,'2019-08-21 15:10:59',488.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 (11904,8,8,'2019-08-21 15:10:59',489.269000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11905,8,8,'2019-08-21 15:10:59',490.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 (11906,8,8,'2019-08-21 15:10:59',491.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 (11907,8,8,'2019-08-21 15:10:59',491.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 (11908,8,8,'2019-08-21 15:10:59',492.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 (11909,8,8,'2019-08-21 15:10:59',492.915000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11910,8,8,'2019-08-21 15:10:59',493.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 (11911,8,8,'2019-08-21 15:10:59',493.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 (11912,8,8,'2019-08-21 15:10:59',494.880000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11913,8,8,'2019-08-21 15:10:59',495.334000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11914,8,8,'2019-08-21 15:10:59',495.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 (11915,8,8,'2019-08-21 15:10:59',496.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 (11916,8,8,'2019-08-21 15:10:59',497.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 (11917,8,8,'2019-08-21 15:10:59',498.326000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11918,8,8,'2019-08-21 15:10:59',498.723000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11919,8,8,'2019-08-21 15:10:59',499.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 (11920,8,8,'2019-08-21 15:10:59',500.141000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11921,8,8,'2019-08-21 15:10:59',500.528000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11922,8,8,'2019-08-21 15:10:59',501.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 (11923,8,8,'2019-08-21 15:10:59',502.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 (11924,8,8,'2019-08-21 15:10:59',502.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 (11925,8,8,'2019-08-21 15:10:59',503.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 (11926,8,8,'2019-08-21 15:10:59',504.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 (11927,8,8,'2019-08-21 15:10:59',504.976000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11928,8,8,'2019-08-21 15:10:59',505.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 (11929,8,8,'2019-08-21 15:10:59',506.233000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11930,8,8,'2019-08-21 15:10:59',506.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 (11931,8,8,'2019-08-21 15:10:59',507.050000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11932,8,8,'2019-08-21 15:10:59',507.948000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11933,8,8,'2019-08-21 15:10:59',508.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 (11934,8,8,'2019-08-21 15:10:59',509.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 (11935,8,8,'2019-08-21 15:10:59',510.230000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11936,8,8,'2019-08-21 15:10:59',510.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 (11937,8,8,'2019-08-21 15:10:59',511.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 (11938,8,8,'2019-08-21 15:10:59',511.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 (11939,8,8,'2019-08-21 15:10:59',512.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 (11940,8,8,'2019-08-21 15:10:59',513.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 (11941,8,8,'2019-08-21 15:10:59',514.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 (11942,8,8,'2019-08-21 15:10:59',514.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 (11943,8,8,'2019-08-21 15:10:59',515.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 (11944,8,8,'2019-08-21 15:10:59',515.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 (11945,8,8,'2019-08-21 15:10:59',516.855000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11946,8,8,'2019-08-21 15:10:59',517.871000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11947,8,8,'2019-08-21 15:10:59',518.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 (11948,8,8,'2019-08-21 15:10:59',519.085000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11949,8,8,'2019-08-21 15:10:59',519.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 (11950,8,8,'2019-08-21 15:10:59',520.013000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11951,8,8,'2019-08-21 15:10:59',520.651000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11952,8,8,'2019-08-21 15:10:59',521.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 (11953,8,8,'2019-08-21 15:10:59',522.433000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11954,8,8,'2019-08-21 15:10:59',523.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 (11955,8,8,'2019-08-21 15:10:59',524.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 (11956,8,8,'2019-08-21 15:10:59',524.359000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11957,8,8,'2019-08-21 15:10:59',524.863000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11958,8,8,'2019-08-21 15:10:59',525.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 (11959,8,8,'2019-08-21 15:10:59',526.645000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11960,8,8,'2019-08-21 15:10:59',526.951000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11961,8,8,'2019-08-21 15:10:59',527.644000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11962,8,8,'2019-08-21 15:10:59',528.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 (11963,8,8,'2019-08-21 15:10:59',529.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 (11964,8,8,'2019-08-21 15:10:59',529.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 (11965,8,8,'2019-08-21 15:10:59',530.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 (11966,8,8,'2019-08-21 15:10:59',531.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 (11967,8,8,'2019-08-21 15:10:59',531.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 (11968,8,8,'2019-08-21 15:10:59',532.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 (11969,8,8,'2019-08-21 15:10:59',532.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 (11970,8,8,'2019-08-21 15:10:59',532.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 (11971,8,8,'2019-08-21 15:10:59',533.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 (11972,8,8,'2019-08-21 15:10:59',534.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 (11973,8,8,'2019-08-21 15:10:59',535.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 (11974,8,8,'2019-08-21 15:10:59',536.417000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11975,8,8,'2019-08-21 15:10:59',537.416000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11976,8,8,'2019-08-21 15:10:59',538.266000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11977,8,8,'2019-08-21 15:10:59',538.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 (11978,8,8,'2019-08-21 15:10:59',539.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 (11979,8,8,'2019-08-21 15:10:59',539.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 (11980,8,8,'2019-08-21 15:10:59',539.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 (11981,8,8,'2019-08-21 15:10:59',540.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 (11982,8,8,'2019-08-21 15:10:59',541.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 (11983,8,8,'2019-08-21 15:10:59',542.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 (11984,8,8,'2019-08-21 15:10:59',542.461000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11985,8,8,'2019-08-21 15:10:59',543.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 (11986,8,8,'2019-08-21 15:10:59',543.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 (11987,8,8,'2019-08-21 15:10:59',544.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 (11988,8,8,'2019-08-21 15:10:59',545.191000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11989,8,8,'2019-08-21 15:10:59',546.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 (11990,8,8,'2019-08-21 15:10:59',546.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 (11991,8,8,'2019-08-21 15:10:59',547.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 (11992,8,8,'2019-08-21 15:10:59',548.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 (11993,8,8,'2019-08-21 15:10:59',548.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 (11994,8,8,'2019-08-21 15:10:59',549.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 (11995,8,8,'2019-08-21 15:10:59',550.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 (11996,8,8,'2019-08-21 15:10:59',551.085000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11997,8,8,'2019-08-21 15:10:59',551.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 (11998,8,8,'2019-08-21 15:10:59',551.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 (11999,8,8,'2019-08-21 15:10:59',552.483000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12000,8,8,'2019-08-21 15:10:59',553.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 (12001,8,8,'2019-08-21 15:10:59',553.798000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12002,8,8,'2019-08-21 15:10:59',554.364000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12003,8,8,'2019-08-21 15:10:59',555.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 (12004,8,8,'2019-08-21 15:10:59',556.180000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12005,8,8,'2019-08-21 15:10:59',557.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 (12006,8,8,'2019-08-21 15:10:59',558.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 (12007,8,8,'2019-08-21 15:10:59',559.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 (12008,8,8,'2019-08-21 15:10:59',559.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 (12009,8,8,'2019-08-21 15:10:59',560.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 (12010,8,8,'2019-08-21 15:10:59',561.007000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12011,8,8,'2019-08-21 15:10:59',561.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 (12012,8,8,'2019-08-21 15:10:59',562.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 (12013,8,8,'2019-08-21 15:10:59',562.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 (12014,8,8,'2019-08-21 15:10:59',563.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 (12015,8,8,'2019-08-21 15:10:59',564.014000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12016,8,8,'2019-08-21 15:10:59',564.387000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12017,8,8,'2019-08-21 15:10:59',565.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 (12018,8,8,'2019-08-21 15:10:59',566.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 (12019,8,8,'2019-08-21 15:10:59',567.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 (12020,8,8,'2019-08-21 15:10:59',567.856000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12021,8,8,'2019-08-21 15:10:59',568.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 (12022,8,8,'2019-08-21 15:10:59',569.165000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12023,8,8,'2019-08-21 15:10:59',570.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 (12024,8,8,'2019-08-21 15:10:59',570.979000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12025,8,8,'2019-08-21 15:10:59',571.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 (12026,8,8,'2019-08-21 15:10:59',572.152000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12027,8,8,'2019-08-21 15:10:59',572.595000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12028,8,8,'2019-08-21 15:10:59',573.040000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12029,8,8,'2019-08-21 15:10:59',583.285000,0.000000,NULL,NULL,NULL,NULL,'e-186',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12030,8,8,'2019-08-21 15:10:59',583.287000,0.000000,NULL,NULL,NULL,NULL,'e-219',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12031,8,8,'2019-08-21 15:10:59',583.288000,0.000000,NULL,NULL,NULL,NULL,'e-240',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12032,8,8,'2019-08-21 15:10:59',583.290000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12033,8,8,'2019-08-21 15:10:59',583.291000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12034,8,8,'2019-08-21 15:10:59',583.292000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12035,8,8,'2019-08-21 15:10:59',583.348000,0.000000,NULL,NULL,NULL,NULL,'e-253',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12036,8,8,'2019-08-21 15:10:59',583.350000,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 (12037,8,8,'2019-08-21 15:10:59',583.352000,0.000000,NULL,NULL,NULL,NULL,'e-150',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12038,8,8,'2019-08-21 15:10:59',583.353000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12039,8,8,'2019-08-21 15:10:59',583.354000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12040,8,8,'2019-08-21 15:10:59',583.354000,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 (12041,8,8,'2019-08-21 15:10:59',583.357000,0.000000,NULL,NULL,NULL,NULL,'e-248',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12042,8,8,'2019-08-21 15:10:59',583.359000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12043,8,8,'2019-08-21 15:10:59',583.360000,0.000000,NULL,NULL,NULL,NULL,'e-220',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12044,8,8,'2019-08-21 15:10:59',583.361000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12045,8,8,'2019-08-21 15:10:59',583.409000,0.000000,NULL,NULL,NULL,NULL,'e-251',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12046,8,8,'2019-08-21 15:10:59',583.473000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12047,8,8,'2019-08-21 15:10:59',583.474000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12048,8,8,'2019-08-21 15:10:59',583.477000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12049,8,8,'2019-08-21 15:10:59',583.478000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12050,8,8,'2019-08-21 15:10:59',583.480000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12051,8,8,'2019-08-21 15:10:59',583.481000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12052,8,8,'2019-08-21 15:10:59',583.483000,0.000000,NULL,NULL,NULL,NULL,'e-186',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12053,8,8,'2019-08-21 15:10:59',583.484000,0.000000,NULL,NULL,NULL,NULL,'e-236',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12054,8,8,'2019-08-21 15:10:59',583.485000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12055,8,8,'2019-08-21 15:10:59',583.534000,0.000000,NULL,NULL,NULL,NULL,'e-219',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12056,8,8,'2019-08-21 15:10:59',583.535000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12057,8,8,'2019-08-21 15:10:59',583.536000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12058,8,8,'2019-08-21 15:10:59',583.539000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12059,8,8,'2019-08-21 15:10:59',583.540000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12060,8,8,'2019-08-21 15:10:59',583.543000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12061,8,8,'2019-08-21 15:10:59',583.544000,0.000000,NULL,NULL,NULL,NULL,'e-240',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12062,8,8,'2019-08-21 15:10:59',583.546000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12063,8,8,'2019-08-21 15:10:59',583.547000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12064,8,8,'2019-08-21 15:10:59',583.548000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12065,8,8,'2019-08-21 15:10:59',583.597000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12066,8,8,'2019-08-21 15:10:59',583.599000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12067,8,8,'2019-08-21 15:10:59',583.602000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12068,8,8,'2019-08-21 15:10:59',583.603000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12069,8,8,'2019-08-21 15:10:59',583.605000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12070,8,8,'2019-08-21 15:10:59',583.606000,0.000000,NULL,NULL,NULL,NULL,'e-241',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12071,8,8,'2019-08-21 15:10:59',583.608000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12072,8,8,'2019-08-21 15:10:59',583.609000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12073,8,8,'2019-08-21 15:10:59',583.610000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12074,8,8,'2019-08-21 15:10:59',583.659000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12075,8,8,'2019-08-21 15:10:59',583.661000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12076,8,8,'2019-08-21 15:10:59',583.664000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12077,8,8,'2019-08-21 15:10:59',583.665000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12078,8,8,'2019-08-21 15:10:59',583.668000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12079,8,8,'2019-08-21 15:10:59',583.669000,0.000000,NULL,NULL,NULL,NULL,'e-241',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12080,8,8,'2019-08-21 15:10:59',583.672000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12081,8,8,'2019-08-21 15:10:59',583.673000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12082,8,8,'2019-08-21 15:10:59',583.722000,0.000000,NULL,NULL,NULL,NULL,'e-219',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12083,8,8,'2019-08-21 15:10:59',583.723000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12084,8,8,'2019-08-21 15:10:59',583.725000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12085,8,8,'2019-08-21 15:10:59',583.727000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12086,8,8,'2019-08-21 15:10:59',583.728000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12087,8,8,'2019-08-21 15:10:59',583.730000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12088,8,8,'2019-08-21 15:10:59',583.732000,0.000000,NULL,NULL,NULL,NULL,'e-191',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12089,8,8,'2019-08-21 15:10:59',583.734000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12090,8,8,'2019-08-21 15:10:59',583.735000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12091,8,8,'2019-08-21 15:10:59',583.784000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12092,8,8,'2019-08-21 15:10:59',583.785000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12093,8,8,'2019-08-21 15:10:59',583.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 (12094,8,8,'2019-08-21 15:10:59',583.789000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12095,8,8,'2019-08-21 15:10:59',583.790000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12096,8,8,'2019-08-21 15:10:59',583.793000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12097,8,8,'2019-08-21 15:10:59',583.795000,0.000000,NULL,NULL,NULL,NULL,'e-191',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12098,8,8,'2019-08-21 15:10:59',583.797000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12099,8,8,'2019-08-21 15:10:59',583.798000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12100,8,8,'2019-08-21 15:10:59',583.847000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12101,8,8,'2019-08-21 15:10:59',583.849000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12102,8,8,'2019-08-21 15:10:59',583.852000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12103,8,8,'2019-08-21 15:10:59',583.853000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12104,8,8,'2019-08-21 15:10:59',583.855000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12105,8,8,'2019-08-21 15:10:59',583.856000,0.000000,NULL,NULL,NULL,NULL,'e-240',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12106,8,8,'2019-08-21 15:10:59',583.858000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12107,8,8,'2019-08-21 15:10:59',583.859000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12108,8,8,'2019-08-21 15:10:59',583.860000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12109,8,8,'2019-08-21 15:10:59',588.003000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12110,8,8,'2019-08-21 15:10:59',588.005000,0.000000,NULL,NULL,NULL,NULL,'e-189',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12111,8,8,'2019-08-21 15:10:59',588.007000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12112,8,8,'2019-08-21 15:10:59',588.009000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12113,8,8,'2019-08-21 15:10:59',588.010000,0.000000,NULL,NULL,NULL,NULL,'e-251',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12114,8,8,'2019-08-21 15:10:59',588.012000,0.000000,NULL,NULL,NULL,NULL,'e-240',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12115,8,8,'2019-08-21 15:10:59',588.014000,0.000000,NULL,NULL,NULL,NULL,'e-221',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12116,8,8,'2019-08-21 15:10:59',588.016000,0.000000,NULL,NULL,NULL,NULL,'e-242',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12117,8,8,'2019-08-21 15:10:59',588.017000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12118,8,8,'2019-08-21 15:10:59',588.065000,0.000000,NULL,NULL,NULL,NULL,'e-207',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12119,8,8,'2019-08-21 15:10:59',588.067000,0.000000,NULL,NULL,NULL,NULL,'e-241',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12120,8,8,'2019-08-21 15:10:59',588.068000,0.000000,NULL,NULL,NULL,NULL,'e-250',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12121,8,8,'2019-08-21 15:10:59',588.071000,0.000000,NULL,NULL,NULL,NULL,'e-236',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12122,8,8,'2019-08-21 15:10:59',588.072000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12123,8,8,'2019-08-21 15:10:59',588.073000,0.000000,NULL,NULL,NULL,NULL,'e-250',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12124,8,8,'2019-08-21 15:10:59',588.078000,0.000000,NULL,NULL,NULL,NULL,'e-182',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12125,8,8,'2019-08-21 15:10:59',588.079000,0.000000,NULL,NULL,NULL,NULL,'e-250',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12126,8,8,'2019-08-21 15:10:59',588.080000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12127,8,8,'2019-08-21 15:10:59',588.128000,0.000000,NULL,NULL,NULL,NULL,'e-207',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12128,8,8,'2019-08-21 15:10:59',588.130000,0.000000,NULL,NULL,NULL,NULL,'e-241',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12129,8,8,'2019-08-21 15:10:59',588.131000,0.000000,NULL,NULL,NULL,NULL,'e-251',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12130,8,8,'2019-08-21 15:10:59',588.134000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12131,8,8,'2019-08-21 15:10:59',588.135000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12132,8,8,'2019-08-21 15:10:59',588.141000,0.000000,NULL,NULL,NULL,NULL,'e-182',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12133,8,8,'2019-08-21 15:10:59',588.142000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12134,8,8,'2019-08-21 15:10:59',588.144000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12135,8,8,'2019-08-21 15:10:59',588.191000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12136,8,8,'2019-08-21 15:10:59',588.193000,0.000000,NULL,NULL,NULL,NULL,'e-223',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12137,8,8,'2019-08-21 15:10:59',588.195000,0.000000,NULL,NULL,NULL,NULL,'e-253',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12138,8,8,'2019-08-21 15:10:59',588.197000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12139,8,8,'2019-08-21 15:10:59',588.198000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12140,8,8,'2019-08-21 15:10:59',588.202000,0.000000,NULL,NULL,NULL,NULL,'e-209',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12141,8,8,'2019-08-21 15:10:59',588.204000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12142,8,8,'2019-08-21 15:10:59',588.205000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12143,8,8,'2019-08-21 15:10:59',588.207000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12144,8,8,'2019-08-21 15:10:59',588.253000,0.000000,NULL,NULL,NULL,NULL,'e-206',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12145,8,8,'2019-08-21 15:10:59',588.255000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12146,8,8,'2019-08-21 15:10:59',588.257000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12147,8,8,'2019-08-21 15:10:59',588.259000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12148,8,8,'2019-08-21 15:10:59',588.260000,0.000000,NULL,NULL,NULL,NULL,'e-250',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12149,8,8,'2019-08-21 15:10:59',588.261000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12150,8,8,'2019-08-21 15:10:59',588.263000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12151,8,8,'2019-08-21 15:10:59',588.266000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12152,8,8,'2019-08-21 15:10:59',588.267000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12153,8,8,'2019-08-21 15:10:59',588.315000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12154,8,8,'2019-08-21 15:10:59',588.317000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12155,8,8,'2019-08-21 15:10:59',588.320000,0.000000,NULL,NULL,NULL,NULL,'e-180',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12156,8,8,'2019-08-21 15:10:59',588.321000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12157,8,8,'2019-08-21 15:10:59',588.325000,0.000000,NULL,NULL,NULL,NULL,'e-202',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12158,8,8,'2019-08-21 15:10:59',588.326000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12159,8,8,'2019-08-21 15:10:59',588.328000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12160,8,8,'2019-08-21 15:10:59',588.329000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12161,8,8,'2019-08-21 15:10:59',588.330000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12162,8,8,'2019-08-21 15:10:59',588.378000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12163,8,8,'2019-08-21 15:10:59',588.380000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12164,8,8,'2019-08-21 15:10:59',588.383000,0.000000,NULL,NULL,NULL,NULL,'e-178',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12165,8,8,'2019-08-21 15:10:59',588.384000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12166,8,8,'2019-08-21 15:10:59',588.388000,0.000000,NULL,NULL,NULL,NULL,'e-206',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12167,8,8,'2019-08-21 15:10:59',588.389000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12168,8,8,'2019-08-21 15:10:59',588.391000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12169,8,8,'2019-08-21 15:10:59',588.392000,0.000000,NULL,NULL,NULL,NULL,'e-210',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12170,8,8,'2019-08-21 15:10:59',588.393000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12171,8,8,'2019-08-21 15:10:59',588.440000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12172,8,8,'2019-08-21 15:10:59',588.442000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12173,8,8,'2019-08-21 15:10:59',588.445000,0.000000,NULL,NULL,NULL,NULL,'e-178',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12174,8,8,'2019-08-21 15:10:59',588.446000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12175,8,8,'2019-08-21 15:10:59',588.450000,0.000000,NULL,NULL,NULL,NULL,'e-206',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12176,8,8,'2019-08-21 15:10:59',588.451000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12177,8,8,'2019-08-21 15:10:59',588.453000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12178,8,8,'2019-08-21 15:10:59',588.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 (12179,8,8,'2019-08-21 15:10:59',588.455000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12180,8,8,'2019-08-21 15:10:59',588.503000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12181,8,8,'2019-08-21 15:10:59',588.505000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12182,8,8,'2019-08-21 15:10:59',588.508000,0.000000,NULL,NULL,NULL,NULL,'e-178',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12183,8,8,'2019-08-21 15:10:59',588.509000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12184,8,8,'2019-08-21 15:10:59',588.513000,0.000000,NULL,NULL,NULL,NULL,'e-206',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12185,8,8,'2019-08-21 15:10:59',588.514000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12186,8,8,'2019-08-21 15:10:59',588.516000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12187,8,8,'2019-08-21 15:10:59',588.517000,0.000000,NULL,NULL,NULL,NULL,'e-210',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12188,8,8,'2019-08-21 15:10:59',588.518000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12189,8,8,'2019-08-21 15:10:59',588.565000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12190,8,8,'2019-08-21 15:10:59',588.570000,0.000000,NULL,NULL,NULL,NULL,'e-178',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12191,8,8,'2019-08-21 15:10:59',588.571000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12192,8,8,'2019-08-21 15:10:59',588.575000,0.000000,NULL,NULL,NULL,NULL,'e-206',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12193,8,8,'2019-08-21 15:10:59',588.576000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12194,8,8,'2019-08-21 15:10:59',588.578000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12195,8,8,'2019-08-21 15:10:59',588.579000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12196,8,8,'2019-08-21 15:10:59',588.580000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12197,8,8,'2019-08-21 15:10:59',631.176000,0.000000,NULL,NULL,NULL,NULL,'e-198',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12198,8,8,'2019-08-21 15:10:59',650.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 (12199,8,8,'2019-08-21 15:10:59',650.449000,0.000000,NULL,NULL,NULL,NULL,'e-198',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12200,8,8,'2019-08-21 15:10:59',670.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 (12201,8,8,'2019-08-21 15:10:59',671.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 (12202,8,8,'2019-08-21 15:10:59',672.661000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12203,8,8,'2019-08-21 15:10:59',673.022000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12204,8,8,'2019-08-21 15:10:59',673.560000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12205,8,8,'2019-08-21 15:10:59',674.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 (12206,8,8,'2019-08-21 15:10:59',675.208000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12207,8,8,'2019-08-21 15:10:59',675.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 (12208,8,8,'2019-08-21 15:10:59',676.074000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12209,8,8,'2019-08-21 15:10:59',677.072000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12210,8,8,'2019-08-21 15:10:59',677.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 (12211,8,8,'2019-08-21 15:10:59',678.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 (12212,8,8,'2019-08-21 15:10:59',678.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 (12213,8,8,'2019-08-21 15:10:59',679.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 (12214,8,8,'2019-08-21 15:10:59',679.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 (12215,8,8,'2019-08-21 15:10:59',680.535000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12216,8,8,'2019-08-21 15:10:59',681.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 (12217,8,8,'2019-08-21 15:10:59',681.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 (12218,8,8,'2019-08-21 15:10:59',682.301000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12219,8,8,'2019-08-21 15:10:59',683.133000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12220,8,8,'2019-08-21 15:10:59',683.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 (12221,8,8,'2019-08-21 15:10:59',683.965000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12222,8,8,'2019-08-21 15:10:59',684.914000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12223,8,8,'2019-08-21 15:10:59',685.813000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12224,8,8,'2019-08-21 15:10:59',686.612000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12225,8,8,'2019-08-21 15:10:59',687.428000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12226,8,8,'2019-08-21 15:10:59',687.848000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12227,8,8,'2019-08-21 15:10:59',688.228000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12228,8,8,'2019-08-21 15:10:59',688.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 (12229,8,8,'2019-08-21 15:10:59',688.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 (12230,8,8,'2019-08-21 15:10:59',689.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 (12231,8,8,'2019-08-21 15:10:59',690.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 (12232,8,8,'2019-08-21 15:10:59',691.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 (12233,8,8,'2019-08-21 15:10:59',692.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 (12234,8,8,'2019-08-21 15:10:59',693.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 (12235,8,8,'2019-08-21 15:10:59',693.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 (12236,8,8,'2019-08-21 15:10:59',694.154000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12237,8,8,'2019-08-21 15:10:59',694.665000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12238,8,8,'2019-08-21 15:10:59',695.137000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12239,8,8,'2019-08-21 15:10:59',696.118000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12240,8,8,'2019-08-21 15:10:59',696.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 (12241,8,8,'2019-08-21 15:10:59',697.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 (12242,8,8,'2019-08-21 15:10:59',698.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 (12243,8,8,'2019-08-21 15:10:59',699.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 (12244,8,8,'2019-08-21 15:10:59',700.364000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12245,8,8,'2019-08-21 15:10:59',700.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 (12246,8,8,'2019-08-21 15:10:59',701.263000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12247,8,8,'2019-08-21 15:10:59',701.613000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12248,8,8,'2019-08-21 15:10:59',702.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 (12249,8,8,'2019-08-21 15:10:59',702.783000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12250,8,8,'2019-08-21 15:10:59',703.077000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12251,8,8,'2019-08-21 15:10:59',704.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 (12252,8,8,'2019-08-21 15:10:59',704.909000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12253,8,8,'2019-08-21 15:10:59',705.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 (12254,8,8,'2019-08-21 15:10:59',705.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 (12255,8,8,'2019-08-21 15:10:59',706.523000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12256,8,8,'2019-08-21 15:10:59',707.473000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12257,8,8,'2019-08-21 15:10:59',708.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 (12258,8,8,'2019-08-21 15:10:59',709.204000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12259,8,8,'2019-08-21 15:10:59',710.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 (12260,8,8,'2019-08-21 15:10:59',710.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 (12261,8,8,'2019-08-21 15:10:59',711.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 (12262,8,8,'2019-08-21 15:10:59',711.718000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12263,8,8,'2019-08-21 15:10:59',712.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 (12264,8,8,'2019-08-21 15:10:59',712.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 (12265,8,8,'2019-08-21 15:10:59',713.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 (12266,8,8,'2019-08-21 15:10:59',713.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 (12267,8,8,'2019-08-21 15:10:59',714.332000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12268,8,8,'2019-08-21 15:10:59',715.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 (12269,8,8,'2019-08-21 15:10:59',716.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 (12270,8,8,'2019-08-21 15:10:59',716.929000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12271,8,8,'2019-08-21 15:10:59',717.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 (12272,8,8,'2019-08-21 15:10:59',717.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 (12273,8,8,'2019-08-21 15:10:59',718.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 (12274,8,8,'2019-08-21 15:10:59',718.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 (12275,8,8,'2019-08-21 15:10:59',718.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 (12276,8,8,'2019-08-21 15:10:59',719.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 (12277,8,8,'2019-08-21 15:10:59',720.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 (12278,8,8,'2019-08-21 15:10:59',721.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 (12279,8,8,'2019-08-21 15:10:59',722.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 (12280,8,8,'2019-08-21 15:10:59',723.089000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12281,8,8,'2019-08-21 15:10:59',724.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 (12282,8,8,'2019-08-21 15:10:59',724.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 (12283,8,8,'2019-08-21 15:10:59',725.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 (12284,8,8,'2019-08-21 15:10:59',725.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 (12285,8,8,'2019-08-21 15:10:59',726.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 (12286,8,8,'2019-08-21 15:10:59',727.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 (12287,8,8,'2019-08-21 15:10:59',727.634000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12288,8,8,'2019-08-21 15:10:59',728.533000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12289,8,8,'2019-08-21 15:10:59',728.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 (12290,8,8,'2019-08-21 15:10:59',729.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 (12291,8,8,'2019-08-21 15:10:59',729.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 (12292,8,8,'2019-08-21 15:10:59',730.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 (12293,8,8,'2019-08-21 15:10:59',731.030000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12294,8,8,'2019-08-21 15:10:59',731.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 (12295,8,8,'2019-08-21 15:10:59',732.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 (12296,8,8,'2019-08-21 15:10:59',733.777000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12297,8,8,'2019-08-21 15:10:59',734.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 (12298,8,8,'2019-08-21 15:10:59',734.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 (12299,8,8,'2019-08-21 15:10:59',735.592000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12300,8,8,'2019-08-21 15:10:59',735.923000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12301,8,8,'2019-08-21 15:10:59',736.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 (12302,8,8,'2019-08-21 15:10:59',737.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 (12303,8,8,'2019-08-21 15:10:59',737.906000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12304,8,8,'2019-08-21 15:10:59',738.822000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12305,8,8,'2019-08-21 15:10:59',739.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 (12306,8,8,'2019-08-21 15:10:59',739.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 (12307,8,8,'2019-08-21 15:10:59',740.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 (12308,8,8,'2019-08-21 15:10:59',741.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 (12309,8,8,'2019-08-21 15:10:59',741.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 (12310,8,8,'2019-08-21 15:10:59',742.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 (12311,8,8,'2019-08-21 15:10:59',743.134000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12312,8,8,'2019-08-21 15:10:59',743.949000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12313,8,8,'2019-08-21 15:10:59',744.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 (12314,8,8,'2019-08-21 15:10:59',745.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 (12315,8,8,'2019-08-21 15:10:59',745.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 (12316,8,8,'2019-08-21 15:10:59',746.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 (12317,8,8,'2019-08-21 15:10:59',746.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 (12318,8,8,'2019-08-21 15:10:59',747.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 (12319,8,8,'2019-08-21 15:10:59',748.162000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12320,8,8,'2019-08-21 15:10:59',749.044000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12321,8,8,'2019-08-21 15:10:59',749.457000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12322,8,8,'2019-08-21 15:10:59',749.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 (12323,8,8,'2019-08-21 15:10:59',750.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 (12324,8,8,'2019-08-21 15:10:59',750.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 (12325,8,8,'2019-08-21 15:10:59',751.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 (12326,8,8,'2019-08-21 15:10:59',752.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 (12327,8,8,'2019-08-21 15:10:59',753.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 (12328,8,8,'2019-08-21 15:10:59',754.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 (12329,8,8,'2019-08-21 15:10:59',755.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 (12330,8,8,'2019-08-21 15:10:59',755.639000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12331,8,8,'2019-08-21 15:10:59',756.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 (12332,8,8,'2019-08-21 15:10:59',756.952000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12333,8,8,'2019-08-21 15:10:59',757.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 (12334,8,8,'2019-08-21 15:10:59',758.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 (12335,8,8,'2019-08-21 15:10:59',758.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 (12336,8,8,'2019-08-21 15:10:59',759.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 (12337,8,8,'2019-08-21 15:10:59',760.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 (12338,8,8,'2019-08-21 15:10:59',760.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 (12339,8,8,'2019-08-21 15:10:59',761.364000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12340,8,8,'2019-08-21 15:10:59',762.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 (12341,8,8,'2019-08-21 15:10:59',763.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 (12342,8,8,'2019-08-21 15:10:59',763.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 (12343,8,8,'2019-08-21 15:10:59',764.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 (12344,8,8,'2019-08-21 15:10:59',765.076000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12345,8,8,'2019-08-21 15:10:59',766.025000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12346,8,8,'2019-08-21 15:10:59',766.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 (12347,8,8,'2019-08-21 15:10:59',766.875000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12348,8,8,'2019-08-21 15:10:59',767.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 (12349,8,8,'2019-08-21 15:10:59',768.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 (12350,8,8,'2019-08-21 15:10:59',768.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 (12351,8,8,'2019-08-21 15:10:59',769.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 (12352,8,8,'2019-08-21 15:10:59',770.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 (12353,8,8,'2019-08-21 15:10:59',770.857000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12354,8,8,'2019-08-21 15:10:59',771.403000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12355,8,8,'2019-08-21 15:10:59',772.169000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12356,8,8,'2019-08-21 15:10:59',773.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 (12357,8,8,'2019-08-21 15:10:59',774.050000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12358,8,8,'2019-08-21 15:10:59',774.387000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12359,8,8,'2019-08-21 15:10:59',774.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 (12360,8,8,'2019-08-21 15:10:59',775.882000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12361,8,8,'2019-08-21 15:10:59',776.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 (12362,8,8,'2019-08-21 15:10:59',776.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 (12363,8,8,'2019-08-21 15:10:59',777.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 (12364,8,8,'2019-08-21 15:10:59',778.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 (12365,8,8,'2019-08-21 15:10:59',778.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 (12366,8,8,'2019-08-21 15:10:59',779.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 (12367,8,8,'2019-08-21 15:10:59',780.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 (12368,8,8,'2019-08-21 15:10:59',781.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 (12369,8,8,'2019-08-21 15:10:59',781.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 (12370,8,8,'2019-08-21 15:10:59',782.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 (12371,8,8,'2019-08-21 15:10:59',782.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 (12372,8,8,'2019-08-21 15:10:59',783.174000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12373,8,8,'2019-08-21 15:10:59',784.022000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12374,8,8,'2019-08-21 15:10:59',784.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 (12375,8,8,'2019-08-21 15:10:59',785.721000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12376,8,8,'2019-08-21 15:10:59',786.687000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12377,8,8,'2019-08-21 15:10:59',787.535000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12378,8,8,'2019-08-21 15:10:59',787.901000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12379,8,8,'2019-08-21 15:10:59',788.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 (12380,8,8,'2019-08-21 15:10:59',789.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 (12381,8,8,'2019-08-21 15:10:59',790.232000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12382,8,8,'2019-08-21 15:10:59',790.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 (12383,8,8,'2019-08-21 15:10:59',791.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 (12384,8,8,'2019-08-21 15:10:59',792.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 (12385,8,8,'2019-08-21 15:10:59',793.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 (12386,8,8,'2019-08-21 15:10:59',793.912000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12387,8,8,'2019-08-21 15:10:59',794.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 (12388,8,8,'2019-08-21 15:10:59',795.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 (12389,8,8,'2019-08-21 15:10:59',796.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 (12390,8,8,'2019-08-21 15:10:59',796.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 (12391,8,8,'2019-08-21 15:10:59',796.998000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12392,8,8,'2019-08-21 15:10:59',797.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 (12393,8,8,'2019-08-21 15:10:59',798.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 (12394,8,8,'2019-08-21 15:10:59',798.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 (12395,8,8,'2019-08-21 15:10:59',799.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 (12396,8,8,'2019-08-21 15:10:59',800.321000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12397,8,8,'2019-08-21 15:10:59',801.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 (12398,8,8,'2019-08-21 15:10:59',801.718000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12399,8,8,'2019-08-21 15:10:59',802.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 (12400,8,8,'2019-08-21 15:10:59',803.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 (12401,8,8,'2019-08-21 15:10:59',803.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 (12402,8,8,'2019-08-21 15:10:59',804.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 (12403,8,8,'2019-08-21 15:10:59',804.800000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12404,8,8,'2019-08-21 15:10:59',805.666000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12405,8,8,'2019-08-21 15:10:59',805.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 (12406,8,8,'2019-08-21 15:10:59',806.664000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12407,8,8,'2019-08-21 15:10:59',807.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 (12408,8,8,'2019-08-21 15:10:59',808.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 (12409,8,8,'2019-08-21 15:10:59',809.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 (12410,8,8,'2019-08-21 15:10:59',810.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 (12411,8,8,'2019-08-21 15:10:59',810.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 (12412,8,8,'2019-08-21 15:10:59',811.093000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12413,8,8,'2019-08-21 15:10:59',811.450000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12414,8,8,'2019-08-21 15:10:59',811.875000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12415,8,8,'2019-08-21 15:10:59',812.642000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12416,8,8,'2019-08-21 15:10:59',813.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 (12417,8,8,'2019-08-21 15:10:59',814.473000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12418,8,8,'2019-08-21 15:10:59',814.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 (12419,8,8,'2019-08-21 15:10:59',815.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 (12420,8,8,'2019-08-21 15:10:59',815.837000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12421,8,8,'2019-08-21 15:10:59',816.438000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12422,8,8,'2019-08-21 15:10:59',817.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 (12423,8,8,'2019-08-21 15:10:59',818.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 (12424,8,8,'2019-08-21 15:10:59',819.234000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12425,8,8,'2019-08-21 15:10:59',819.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 (12426,8,8,'2019-08-21 15:10:59',820.116000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12427,8,8,'2019-08-21 15:10:59',820.949000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12428,8,8,'2019-08-21 15:10:59',821.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 (12429,8,8,'2019-08-21 15:10:59',822.514000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12430,8,8,'2019-08-21 15:10:59',822.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 (12431,8,8,'2019-08-21 15:10:59',823.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 (12432,8,8,'2019-08-21 15:10:59',824.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 (12433,8,8,'2019-08-21 15:10:59',825.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 (12434,8,8,'2019-08-21 15:10:59',826.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 (12435,8,8,'2019-08-21 15:10:59',827.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 (12436,8,8,'2019-08-21 15:10:59',827.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 (12437,8,8,'2019-08-21 15:10:59',828.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 (12438,8,8,'2019-08-21 15:10:59',829.023000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12439,8,8,'2019-08-21 15:10:59',829.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 (12440,8,8,'2019-08-21 15:10:59',829.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 (12441,8,8,'2019-08-21 15:10:59',830.755000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12442,8,8,'2019-08-21 15:10:59',831.737000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12443,8,8,'2019-08-21 15:10:59',832.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 (12444,8,8,'2019-08-21 15:10:59',833.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 (12445,8,8,'2019-08-21 15:10:59',833.535000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12446,8,8,'2019-08-21 15:10:59',833.930000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12447,8,8,'2019-08-21 15:10:59',834.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 (12448,8,8,'2019-08-21 15:10:59',835.450000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12449,8,8,'2019-08-21 15:10:59',836.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 (12450,8,8,'2019-08-21 15:10:59',837.364000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12451,8,8,'2019-08-21 15:10:59',837.661000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12452,8,8,'2019-08-21 15:10:59',838.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 (12453,8,8,'2019-08-21 15:10:59',839.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 (12454,8,8,'2019-08-21 15:10:59',839.878000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12455,8,8,'2019-08-21 15:10:59',840.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 (12456,8,8,'2019-08-21 15:10:59',840.678000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12457,8,8,'2019-08-21 15:10:59',841.576000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12458,8,8,'2019-08-21 15:10:59',841.998000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12459,8,8,'2019-08-21 15:10:59',842.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 (12460,8,8,'2019-08-21 15:10:59',843.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 (12461,8,8,'2019-08-21 15:10:59',843.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 (12462,8,8,'2019-08-21 15:10:59',844.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 (12463,8,8,'2019-08-21 15:10:59',845.256000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12464,8,8,'2019-08-21 15:10:59',846.171000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12465,8,8,'2019-08-21 15:10:59',847.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 (12466,8,8,'2019-08-21 15:10:59',847.786000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12467,8,8,'2019-08-21 15:10:59',848.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 (12468,8,8,'2019-08-21 15:10:59',848.652000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12469,8,8,'2019-08-21 15:10:59',849.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 (12470,8,8,'2019-08-21 15:10:59',849.854000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12471,8,8,'2019-08-21 15:10:59',850.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 (12472,8,8,'2019-08-21 15:10:59',851.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 (12473,8,8,'2019-08-21 15:10:59',851.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 (12474,8,8,'2019-08-21 15:10:59',851.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 (12475,8,8,'2019-08-21 15:10:59',852.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 (12476,8,8,'2019-08-21 15:10:59',853.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 (12477,8,8,'2019-08-21 15:10:59',854.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 (12478,8,8,'2019-08-21 15:10:59',855.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 (12479,8,8,'2019-08-21 15:10:59',855.633000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12480,8,8,'2019-08-21 15:10:59',856.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 (12481,8,8,'2019-08-21 15:10:59',856.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 (12482,8,8,'2019-08-21 15:10:59',857.626000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12483,8,8,'2019-08-21 15:10:59',858.022000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12484,8,8,'2019-08-21 15:10:59',858.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 (12485,8,8,'2019-08-21 15:10:59',858.950000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12486,8,8,'2019-08-21 15:10:59',859.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 (12487,8,8,'2019-08-21 15:10:59',860.239000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12488,8,8,'2019-08-21 15:10:59',861.205000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12489,8,8,'2019-08-21 15:10:59',862.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 (12490,8,8,'2019-08-21 15:10:59',863.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 (12491,8,8,'2019-08-21 15:10:59',863.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 (12492,8,8,'2019-08-21 15:10:59',864.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 (12493,8,8,'2019-08-21 15:10:59',864.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 (12494,8,8,'2019-08-21 15:10:59',865.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 (12495,8,8,'2019-08-21 15:10:59',865.733000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12496,8,8,'2019-08-21 15:10:59',866.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 (12497,8,8,'2019-08-21 15:10:59',867.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 (12498,8,8,'2019-08-21 15:10:59',867.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 (12499,8,8,'2019-08-21 15:10:59',868.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 (12500,8,8,'2019-08-21 15:10:59',869.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 (12501,8,8,'2019-08-21 15:10:59',869.979000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12502,8,8,'2019-08-21 15:10:59',870.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 (12503,8,8,'2019-08-21 15:10:59',871.123000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12504,8,8,'2019-08-21 15:10:59',871.693000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12505,8,8,'2019-08-21 15:10:59',872.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 (12506,8,8,'2019-08-21 15:10:59',872.659000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12507,8,8,'2019-08-21 15:10:59',873.625000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12508,8,8,'2019-08-21 15:10:59',874.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 (12509,8,8,'2019-08-21 15:10:59',874.945000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12510,8,8,'2019-08-21 15:10:59',875.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 (12511,8,8,'2019-08-21 15:10:59',876.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 (12512,8,8,'2019-08-21 15:10:59',877.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 (12513,8,8,'2019-08-21 15:10:59',877.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 (12514,8,8,'2019-08-21 15:10:59',878.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 (12515,8,8,'2019-08-21 15:10:59',878.952000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12516,8,8,'2019-08-21 15:10:59',879.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 (12517,8,8,'2019-08-21 15:10:59',880.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 (12518,8,8,'2019-08-21 15:10:59',880.977000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12519,8,8,'2019-08-21 15:10:59',881.566000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12520,8,8,'2019-08-21 15:10:59',882.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 (12521,8,8,'2019-08-21 15:10:59',883.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 (12522,8,8,'2019-08-21 15:10:59',884.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 (12523,8,8,'2019-08-21 15:10:59',884.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 (12524,8,8,'2019-08-21 15:10:59',884.862000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12525,8,8,'2019-08-21 15:10:59',885.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 (12526,8,8,'2019-08-21 15:10:59',886.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 (12527,8,8,'2019-08-21 15:10:59',887.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 (12528,8,8,'2019-08-21 15:10:59',888.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 (12529,8,8,'2019-08-21 15:10:59',888.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 (12530,8,8,'2019-08-21 15:10:59',889.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 (12531,8,8,'2019-08-21 15:10:59',890.240000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12532,8,8,'2019-08-21 15:10:59',891.072000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12533,8,8,'2019-08-21 15:10:59',891.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 (12534,8,8,'2019-08-21 15:10:59',892.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 (12535,8,8,'2019-08-21 15:10:59',892.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 (12536,8,8,'2019-08-21 15:10:59',893.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 (12537,8,8,'2019-08-21 15:10:59',894.369000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12538,8,8,'2019-08-21 15:10:59',895.268000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12539,8,8,'2019-08-21 15:10:59',895.660000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12540,8,8,'2019-08-21 15:10:59',896.117000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12541,8,8,'2019-08-21 15:10:59',896.518000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12542,8,8,'2019-08-21 15:10:59',896.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 (12543,8,8,'2019-08-21 15:10:59',897.715000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12544,8,8,'2019-08-21 15:10:59',898.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 (12545,8,8,'2019-08-21 15:10:59',899.297000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12546,8,8,'2019-08-21 15:10:59',899.674000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12547,8,8,'2019-08-21 15:10:59',900.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 (12548,8,8,'2019-08-21 15:10:59',900.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 (12549,8,8,'2019-08-21 15:10:59',901.111000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12550,8,8,'2019-08-21 15:10:59',902.077000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12551,8,8,'2019-08-21 15:10:59',903.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 (12552,8,8,'2019-08-21 15:10:59',903.941000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12553,8,8,'2019-08-21 15:10:59',904.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 (12554,8,8,'2019-08-21 15:10:59',905.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 (12555,8,8,'2019-08-21 15:10:59',906.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 (12556,8,8,'2019-08-21 15:10:59',906.705000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12557,8,8,'2019-08-21 15:10:59',907.471000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12558,8,8,'2019-08-21 15:10:59',907.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 (12559,8,8,'2019-08-21 15:10:59',908.387000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12560,8,8,'2019-08-21 15:10:59',908.821000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12561,8,8,'2019-08-21 15:10:59',909.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 (12562,8,8,'2019-08-21 15:10:59',910.068000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12563,8,8,'2019-08-21 15:10:59',911.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 (12564,8,8,'2019-08-21 15:10:59',911.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 (12565,8,8,'2019-08-21 15:10:59',912.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 (12566,8,8,'2019-08-21 15:10:59',912.998000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12567,8,8,'2019-08-21 15:10:59',913.931000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12568,8,8,'2019-08-21 15:10:59',914.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 (12569,8,8,'2019-08-21 15:10:59',915.695000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12570,8,8,'2019-08-21 15:10:59',916.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 (12571,8,8,'2019-08-21 15:10:59',916.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 (12572,8,8,'2019-08-21 15:10:59',916.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 (12573,8,8,'2019-08-21 15:10:59',917.311000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12574,8,8,'2019-08-21 15:10:59',918.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 (12575,8,8,'2019-08-21 15:10:59',918.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 (12576,8,8,'2019-08-21 15:10:59',919.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 (12577,8,8,'2019-08-21 15:10:59',919.791000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12578,8,8,'2019-08-21 15:10:59',920.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 (12579,8,8,'2019-08-21 15:10:59',921.639000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12580,8,8,'2019-08-21 15:10:59',922.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 (12581,8,8,'2019-08-21 15:10:59',922.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 (12582,8,8,'2019-08-21 15:10:59',923.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 (12583,8,8,'2019-08-21 15:10:59',924.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 (12584,8,8,'2019-08-21 15:10:59',925.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 (12585,8,8,'2019-08-21 15:10:59',925.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 (12586,8,8,'2019-08-21 15:10:59',926.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 (12587,8,8,'2019-08-21 15:10:59',926.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 (12588,8,8,'2019-08-21 15:10:59',927.683000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12589,8,8,'2019-08-21 15:10:59',928.682000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12590,8,8,'2019-08-21 15:10:59',929.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 (12591,8,8,'2019-08-21 15:10:59',929.514000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12592,8,8,'2019-08-21 15:10:59',930.463000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12593,8,8,'2019-08-21 15:10:59',931.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 (12594,8,8,'2019-08-21 15:10:59',931.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 (12595,8,8,'2019-08-21 15:10:59',932.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 (12596,8,8,'2019-08-21 15:10:59',933.109000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12597,8,8,'2019-08-21 15:10:59',933.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 (12598,8,8,'2019-08-21 15:10:59',934.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 (12599,8,8,'2019-08-21 15:10:59',942.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 (12600,8,8,'2019-08-21 15:10:59',942.887000,0.000000,NULL,NULL,NULL,NULL,'e-198',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12601,8,8,'2019-08-21 15:10:59',960.316000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12602,8,8,'2019-08-21 15:10:59',961.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 (12603,8,8,'2019-08-21 15:10:59',962.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 (12604,8,8,'2019-08-21 15:10:59',962.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 (12605,8,8,'2019-08-21 15:10:59',963.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 (12606,8,8,'2019-08-21 15:10:59',964.064000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12607,8,8,'2019-08-21 15:10:59',964.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 (12608,8,8,'2019-08-21 15:10:59',965.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 (12609,8,8,'2019-08-21 15:10:59',965.677000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12610,8,8,'2019-08-21 15:10:59',966.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 (12611,8,8,'2019-08-21 15:10:59',967.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 (12612,8,8,'2019-08-21 15:10:59',968.290000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12613,8,8,'2019-08-21 15:10:59',969.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 (12614,8,8,'2019-08-21 15:10:59',969.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 (12615,8,8,'2019-08-21 15:10:59',970.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 (12616,8,8,'2019-08-21 15:10:59',970.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 (12617,8,8,'2019-08-21 15:10:59',971.054000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12618,8,8,'2019-08-21 15:10:59',971.970000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12619,8,8,'2019-08-21 15:10:59',972.952000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12620,8,8,'2019-08-21 15:10:59',973.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 (12621,8,8,'2019-08-21 15:10:59',973.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 (12622,8,8,'2019-08-21 15:10:59',974.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 (12623,8,8,'2019-08-21 15:10:59',975.683000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12624,8,8,'2019-08-21 15:10:59',976.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 (12625,8,8,'2019-08-21 15:10:59',976.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 (12626,8,8,'2019-08-21 15:10:59',977.280000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12627,8,8,'2019-08-21 15:10:59',978.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 (12628,8,8,'2019-08-21 15:10:59',978.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 (12629,8,8,'2019-08-21 15:10:59',979.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 (12630,8,8,'2019-08-21 15:10:59',980.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 (12631,8,8,'2019-08-21 15:10:59',980.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 (12632,8,8,'2019-08-21 15:10:59',981.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 (12633,8,8,'2019-08-21 15:10:59',981.609000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12634,8,8,'2019-08-21 15:10:59',982.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 (12635,8,8,'2019-08-21 15:10:59',982.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 (12636,8,8,'2019-08-21 15:10:59',983.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 (12637,8,8,'2019-08-21 15:10:59',983.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 (12638,8,8,'2019-08-21 15:10:59',984.239000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12639,8,8,'2019-08-21 15:10:59',985.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 (12640,8,8,'2019-08-21 15:10:59',986.071000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12641,8,8,'2019-08-21 15:10:59',986.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 (12642,8,8,'2019-08-21 15:10:59',987.952000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12643,8,8,'2019-08-21 15:10:59',988.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 (12644,8,8,'2019-08-21 15:10:59',989.667000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12645,8,8,'2019-08-21 15:10:59',990.134000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12646,8,8,'2019-08-21 15:10:59',990.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 (12647,8,8,'2019-08-21 15:10:59',990.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 (12648,8,8,'2019-08-21 15:10:59',991.549000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12649,8,8,'2019-08-21 15:10:59',992.480000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12650,8,8,'2019-08-21 15:10:59',993.099000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12651,8,8,'2019-08-21 15:10:59',993.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 (12652,8,8,'2019-08-21 15:10:59',994.195000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12653,8,8,'2019-08-21 15:10:59',995.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 (12654,8,8,'2019-08-21 15:10:59',995.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 (12655,8,8,'2019-08-21 15:10:59',995.960000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12656,8,8,'2019-08-21 15:10:59',996.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 (12657,8,8,'2019-08-21 15:10:59',997.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 (12658,8,8,'2019-08-21 15:10:59',998.040000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12659,8,8,'2019-08-21 15:10:59',998.607000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12660,8,8,'2019-08-21 15:10:59',999.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 (12661,8,8,'2019-08-21 15:10:59',1000.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 (12662,8,8,'2019-08-21 15:10:59',1001.121000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12663,8,8,'2019-08-21 15:10:59',1001.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 (12664,8,8,'2019-08-21 15:10:59',1001.954000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12665,8,8,'2019-08-21 15:10:59',1002.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 (12666,8,8,'2019-08-21 15:10:59',1003.284000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12667,8,8,'2019-08-21 15:10:59',1003.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 (12668,8,8,'2019-08-21 15:10:59',1004.801000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12669,8,8,'2019-08-21 15:10:59',1005.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 (12670,8,8,'2019-08-21 15:10:59',1006.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 (12671,8,8,'2019-08-21 15:10:59',1006.955000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12672,8,8,'2019-08-21 15:10:59',1007.515000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12673,8,8,'2019-08-21 15:10:59',1008.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 (12674,8,8,'2019-08-21 15:10:59',1009.312000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12675,8,8,'2019-08-21 15:10:59',1010.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 (12676,8,8,'2019-08-21 15:10:59',1011.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 (12677,8,8,'2019-08-21 15:10:59',1011.665000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12678,8,8,'2019-08-21 15:10:59',1012.093000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12679,8,8,'2019-08-21 15:10:59',1012.644000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12680,8,8,'2019-08-21 15:10:59',1012.858000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12681,8,8,'2019-08-21 15:10:59',1013.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 (12682,8,8,'2019-08-21 15:10:59',1014.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 (12683,8,8,'2019-08-21 15:10:59',1014.706000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12684,8,8,'2019-08-21 15:10:59',1015.572000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12685,8,8,'2019-08-21 15:10:59',1016.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 (12686,8,8,'2019-08-21 15:10:59',1017.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 (12687,8,8,'2019-08-21 15:10:59',1017.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 (12688,8,8,'2019-08-21 15:10:59',1018.169000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12689,8,8,'2019-08-21 15:10:59',1018.936000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12690,8,8,'2019-08-21 15:10:59',1019.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 (12691,8,8,'2019-08-21 15:10:59',1020.733000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12692,8,8,'2019-08-21 15:10:59',1021.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 (12693,8,8,'2019-08-21 15:10:59',1021.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 (12694,8,8,'2019-08-21 15:10:59',1022.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 (12695,8,8,'2019-08-21 15:10:59',1023.413000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12696,8,8,'2019-08-21 15:10:59',1023.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 (12697,8,8,'2019-08-21 15:10:59',1024.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 (12698,8,8,'2019-08-21 15:10:59',1025.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 (12699,8,8,'2019-08-21 15:10:59',1025.703000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12700,8,8,'2019-08-21 15:10:59',1026.077000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12701,8,8,'2019-08-21 15:10:59',1026.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 (12702,8,8,'2019-08-21 15:10:59',1027.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 (12703,8,8,'2019-08-21 15:10:59',1028.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 (12704,8,8,'2019-08-21 15:10:59',1028.607000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12705,8,8,'2019-08-21 15:10:59',1029.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 (12706,8,8,'2019-08-21 15:10:59',1030.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 (12707,8,8,'2019-08-21 15:10:59',1031.338000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12708,8,8,'2019-08-21 15:10:59',1031.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 (12709,8,8,'2019-08-21 15:10:59',1032.121000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12710,8,8,'2019-08-21 15:10:59',1032.672000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12711,8,8,'2019-08-21 15:10:59',1033.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 (12712,8,8,'2019-08-21 15:10:59',1034.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 (12713,8,8,'2019-08-21 15:10:59',1034.834000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12714,8,8,'2019-08-21 15:10:59',1035.364000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12715,8,8,'2019-08-21 15:10:59',1035.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 (12716,8,8,'2019-08-21 15:10:59',1035.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 (12717,8,8,'2019-08-21 15:10:59',1036.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 (12718,8,8,'2019-08-21 15:10:59',1037.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 (12719,8,8,'2019-08-21 15:10:59',1038.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 (12720,8,8,'2019-08-21 15:10:59',1039.363000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12721,8,8,'2019-08-21 15:10:59',1040.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 (12722,8,8,'2019-08-21 15:10:59',1041.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 (12723,8,8,'2019-08-21 15:10:59',1041.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 (12724,8,8,'2019-08-21 15:10:59',1042.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 (12725,8,8,'2019-08-21 15:10:59',1042.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 (12726,8,8,'2019-08-21 15:10:59',1043.841000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12727,8,8,'2019-08-21 15:10:59',1044.707000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12728,8,8,'2019-08-21 15:10:59',1045.087000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12729,8,8,'2019-08-21 15:10:59',1045.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 (12730,8,8,'2019-08-21 15:10:59',1046.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 (12731,8,8,'2019-08-21 15:10:59',1047.504000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12732,8,8,'2019-08-21 15:10:59',1047.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 (12733,8,8,'2019-08-21 15:10:59',1048.453000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12734,8,8,'2019-08-21 15:10:59',1049.235000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12735,8,8,'2019-08-21 15:10:59',1049.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 (12736,8,8,'2019-08-21 15:10:59',1050.234000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12737,8,8,'2019-08-21 15:10:59',1051.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 (12738,8,8,'2019-08-21 15:10:59',1051.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 (12739,8,8,'2019-08-21 15:10:59',1052.049000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12740,8,8,'2019-08-21 15:10:59',1052.981000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12741,8,8,'2019-08-21 15:10:59',1053.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 (12742,8,8,'2019-08-21 15:10:59',1054.579000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12743,8,8,'2019-08-21 15:10:59',1054.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 (12744,8,8,'2019-08-21 15:10:59',1055.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 (12745,8,8,'2019-08-21 15:10:59',1056.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 (12746,8,8,'2019-08-21 15:10:59',1057.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 (12747,8,8,'2019-08-21 15:10:59',1058.042000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12748,8,8,'2019-08-21 15:10:59',1058.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 (12749,8,8,'2019-08-21 15:10:59',1058.908000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12750,8,8,'2019-08-21 15:10:59',1059.296000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12751,8,8,'2019-08-21 15:10:59',1059.724000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12752,8,8,'2019-08-21 15:10:59',1060.623000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12753,8,8,'2019-08-21 15:10:59',1061.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 (12754,8,8,'2019-08-21 15:10:59',1062.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 (12755,8,8,'2019-08-21 15:10:59',1062.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 (12756,8,8,'2019-08-21 15:10:59',1063.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 (12757,8,8,'2019-08-21 15:10:59',1064.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 (12758,8,8,'2019-08-21 15:10:59',1064.409000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12759,8,8,'2019-08-21 15:10:59',1065.052000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12760,8,8,'2019-08-21 15:10:59',1065.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 (12761,8,8,'2019-08-21 15:10:59',1066.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 (12762,8,8,'2019-08-21 15:10:59',1067.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 (12763,8,8,'2019-08-21 15:10:59',1067.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 (12764,8,8,'2019-08-21 15:10:59',1068.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 (12765,8,8,'2019-08-21 15:10:59',1069.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 (12766,8,8,'2019-08-21 15:10:59',1070.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 (12767,8,8,'2019-08-21 15:10:59',1070.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 (12768,8,8,'2019-08-21 15:10:59',1071.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 (12769,8,8,'2019-08-21 15:10:59',1072.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 (12770,8,8,'2019-08-21 15:10:59',1073.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 (12771,8,8,'2019-08-21 15:10:59',1073.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 (12772,8,8,'2019-08-21 15:10:59',1073.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 (12773,8,8,'2019-08-21 15:10:59',1074.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 (12774,8,8,'2019-08-21 15:10:59',1075.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 (12775,8,8,'2019-08-21 15:10:59',1076.655000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12776,8,8,'2019-08-21 15:10:59',1076.985000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12777,8,8,'2019-08-21 15:10:59',1077.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 (12778,8,8,'2019-08-21 15:10:59',1078.486000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12779,8,8,'2019-08-21 15:10:59',1079.469000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12780,8,8,'2019-08-21 15:10:59',1080.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 (12781,8,8,'2019-08-21 15:10:59',1081.084000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12782,8,8,'2019-08-21 15:10:59',1081.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 (12783,8,8,'2019-08-21 15:10:59',1081.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 (12784,8,8,'2019-08-21 15:10:59',1082.300000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12785,8,8,'2019-08-21 15:10:59',1082.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 (12786,8,8,'2019-08-21 15:10:59',1083.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 (12787,8,8,'2019-08-21 15:10:59',1083.954000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12788,8,8,'2019-08-21 15:10:59',1084.431000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12789,8,8,'2019-08-21 15:10:59',1084.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 (12790,8,8,'2019-08-21 15:10:59',1085.279000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12791,8,8,'2019-08-21 15:10:59',1086.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 (12792,8,8,'2019-08-21 15:10:59',1086.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 (12793,8,8,'2019-08-21 15:10:59',1087.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 (12794,8,8,'2019-08-21 15:10:59',1088.059000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12795,8,8,'2019-08-21 15:10:59',1088.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 (12796,8,8,'2019-08-21 15:10:59',1089.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 (12797,8,8,'2019-08-21 15:10:59',1090.457000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12798,8,8,'2019-08-21 15:10:59',1090.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 (12799,8,8,'2019-08-21 15:10:59',1091.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 (12800,8,8,'2019-08-21 15:10:59',1092.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 (12801,8,8,'2019-08-21 15:10:59',1093.337000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12802,8,8,'2019-08-21 15:10:59',1093.676000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12803,8,8,'2019-08-21 15:10:59',1094.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 (12804,8,8,'2019-08-21 15:10:59',1094.653000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12805,8,8,'2019-08-21 15:10:59',1095.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 (12806,8,8,'2019-08-21 15:10:59',1095.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 (12807,8,8,'2019-08-21 15:10:59',1096.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 (12808,8,8,'2019-08-21 15:10:59',1097.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 (12809,8,8,'2019-08-21 15:10:59',1098.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 (12810,8,8,'2019-08-21 15:10:59',1099.061000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12811,8,8,'2019-08-21 15:10:59',1099.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 (12812,8,8,'2019-08-21 15:10:59',1100.279000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12813,8,8,'2019-08-21 15:10:59',1101.162000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12814,8,8,'2019-08-21 15:10:59',1101.512000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12815,8,8,'2019-08-21 15:10:59',1101.928000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12816,8,8,'2019-08-21 15:10:59',1102.710000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12817,8,8,'2019-08-21 15:10:59',1103.576000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12818,8,8,'2019-08-21 15:10:59',1103.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 (12819,8,8,'2019-08-21 15:10:59',1104.458000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12820,8,8,'2019-08-21 15:10:59',1105.274000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12821,8,8,'2019-08-21 15:10:59',1106.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 (12822,8,8,'2019-08-21 15:10:59',1106.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 (12823,8,8,'2019-08-21 15:10:59',1107.056000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12824,8,8,'2019-08-21 15:10:59',1107.871000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12825,8,8,'2019-08-21 15:10:59',1108.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 (12826,8,8,'2019-08-21 15:10:59',1109.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 (12827,8,8,'2019-08-21 15:10:59',1110.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 (12828,8,8,'2019-08-21 15:10:59',1110.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 (12829,8,8,'2019-08-21 15:10:59',1111.435000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12830,8,8,'2019-08-21 15:10:59',1111.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 (12831,8,8,'2019-08-21 15:10:59',1112.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 (12832,8,8,'2019-08-21 15:10:59',1113.148000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12833,8,8,'2019-08-21 15:10:59',1114.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 (12834,8,8,'2019-08-21 15:10:59',1114.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 (12835,8,8,'2019-08-21 15:10:59',1115.663000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12836,8,8,'2019-08-21 15:10:59',1116.044000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12837,8,8,'2019-08-21 15:10:59',1116.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 (12838,8,8,'2019-08-21 15:10:59',1117.328000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12839,8,8,'2019-08-21 15:10:59',1118.094000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12840,8,8,'2019-08-21 15:10:59',1118.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 (12841,8,8,'2019-08-21 15:10:59',1118.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 (12842,8,8,'2019-08-21 15:10:59',1119.392000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12843,8,8,'2019-08-21 15:10:59',1119.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 (12844,8,8,'2019-08-21 15:10:59',1120.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 (12845,8,8,'2019-08-21 15:10:59',1121.706000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12846,8,8,'2019-08-21 15:10:59',1122.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 (12847,8,8,'2019-08-21 15:10:59',1122.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 (12848,8,8,'2019-08-21 15:10:59',1123.504000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12849,8,8,'2019-08-21 15:10:59',1124.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 (12850,8,8,'2019-08-21 15:10:59',1124.797000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12851,8,8,'2019-08-21 15:10:59',1125.235000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12852,8,8,'2019-08-21 15:10:59',1126.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 (12853,8,8,'2019-08-21 15:10:59',1126.950000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12854,8,8,'2019-08-21 15:10:59',1127.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 (12855,8,8,'2019-08-21 15:10:59',1127.750000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12856,8,8,'2019-08-21 15:10:59',1128.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 (12857,8,8,'2019-08-21 15:10:59',1129.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 (12858,8,8,'2019-08-21 15:10:59',1130.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 (12859,8,8,'2019-08-21 15:10:59',1131.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 (12860,8,8,'2019-08-21 15:10:59',1132.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 (12861,8,8,'2019-08-21 15:10:59',1132.521000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12862,8,8,'2019-08-21 15:10:59',1132.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 (12863,8,8,'2019-08-21 15:10:59',1133.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 (12864,8,8,'2019-08-21 15:10:59',1134.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 (12865,8,8,'2019-08-21 15:10:59',1134.659000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12866,8,8,'2019-08-21 15:10:59',1135.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 (12867,8,8,'2019-08-21 15:10:59',1136.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 (12868,8,8,'2019-08-21 15:10:59',1136.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 (12869,8,8,'2019-08-21 15:10:59',1137.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 (12870,8,8,'2019-08-21 15:10:59',1137.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 (12871,8,8,'2019-08-21 15:10:59',1138.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 (12872,8,8,'2019-08-21 15:10:59',1138.971000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12873,8,8,'2019-08-21 15:10:59',1139.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 (12874,8,8,'2019-08-21 15:10:59',1140.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 (12875,8,8,'2019-08-21 15:10:59',1141.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 (12876,8,8,'2019-08-21 15:10:59',1141.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 (12877,8,8,'2019-08-21 15:10:59',1142.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 (12878,8,8,'2019-08-21 15:10:59',1142.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 (12879,8,8,'2019-08-21 15:10:59',1143.216000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12880,8,8,'2019-08-21 15:10:59',1144.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 (12881,8,8,'2019-08-21 15:10:59',1145.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 (12882,8,8,'2019-08-21 15:10:59',1146.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 (12883,8,8,'2019-08-21 15:10:59',1146.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 (12884,8,8,'2019-08-21 15:10:59',1147.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 (12885,8,8,'2019-08-21 15:10:59',1147.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 (12886,8,8,'2019-08-21 15:10:59',1148.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 (12887,8,8,'2019-08-21 15:10:59',1148.960000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12888,8,8,'2019-08-21 15:10:59',1149.593000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12889,8,8,'2019-08-21 15:10:59',1150.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 (12890,8,8,'2019-08-21 15:10:59',1150.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 (12891,8,8,'2019-08-21 15:10:59',1151.308000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12892,8,8,'2019-08-21 15:10:59',1152.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 (12893,8,8,'2019-08-21 15:10:59',1153.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 (12894,8,8,'2019-08-21 15:10:59',1154.171000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12895,8,8,'2019-08-21 15:10:59',1154.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 (12896,8,8,'2019-08-21 15:10:59',1154.937000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12897,8,8,'2019-08-21 15:10:59',1155.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 (12898,8,8,'2019-08-21 15:10:59',1156.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 (12899,8,8,'2019-08-21 15:10:59',1156.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 (12900,8,8,'2019-08-21 15:10:59',1157.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 (12901,8,8,'2019-08-21 15:10:59',1158.566000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12902,8,8,'2019-08-21 15:10:59',1159.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 (12903,8,8,'2019-08-21 15:10:59',1159.852000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12904,8,8,'2019-08-21 15:10:59',1160.414000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12905,8,8,'2019-08-21 15:10:59',1161.396000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12906,8,8,'2019-08-21 15:10:59',1162.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 (12907,8,8,'2019-08-21 15:10:59',1163.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 (12908,8,8,'2019-08-21 15:10:59',1164.127000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12909,8,8,'2019-08-21 15:10:59',1164.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 (12910,8,8,'2019-08-21 15:10:59',1164.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 (12911,8,8,'2019-08-21 15:10:59',1165.398000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12912,8,8,'2019-08-21 15:10:59',1165.858000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12913,8,8,'2019-08-21 15:10:59',1166.807000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12914,8,8,'2019-08-21 15:10:59',1167.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 (12915,8,8,'2019-08-21 15:10:59',1167.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 (12916,8,8,'2019-08-21 15:10:59',1168.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 (12917,8,8,'2019-08-21 15:10:59',1169.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 (12918,8,8,'2019-08-21 15:10:59',1170.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 (12919,8,8,'2019-08-21 15:10:59',1170.744000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12920,8,8,'2019-08-21 15:10:59',1171.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 (12921,8,8,'2019-08-21 15:10:59',1172.068000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12922,8,8,'2019-08-21 15:10:59',1172.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 (12923,8,8,'2019-08-21 15:10:59',1173.265000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12924,8,8,'2019-08-21 15:10:59',1173.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 (12925,8,8,'2019-08-21 15:10:59',1174.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 (12926,8,8,'2019-08-21 15:10:59',1175.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 (12927,8,8,'2019-08-21 15:10:59',1175.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 (12928,8,8,'2019-08-21 15:10:59',1176.180000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12929,8,8,'2019-08-21 15:10:59',1177.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 (12930,8,8,'2019-08-21 15:10:59',1178.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 (12931,8,8,'2019-08-21 15:10:59',1179.061000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12932,8,8,'2019-08-21 15:10:59',1179.447000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12933,8,8,'2019-08-21 15:10:59',1179.992000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12934,8,8,'2019-08-21 15:10:59',1180.991000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12935,8,8,'2019-08-21 15:10:59',1181.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 (12936,8,8,'2019-08-21 15:10:59',1181.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 (12937,8,8,'2019-08-21 15:10:59',1182.723000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12938,8,8,'2019-08-21 15:10:59',1183.722000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12939,8,8,'2019-08-21 15:10:59',1184.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 (12940,8,8,'2019-08-21 15:10:59',1185.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 (12941,8,8,'2019-08-21 15:10:59',1185.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 (12942,8,8,'2019-08-21 15:10:59',1186.069000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12943,8,8,'2019-08-21 15:10:59',1186.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 (12944,8,8,'2019-08-21 15:10:59',1186.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 (12945,8,8,'2019-08-21 15:10:59',1187.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 (12946,8,8,'2019-08-21 15:10:59',1188.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 (12947,8,8,'2019-08-21 15:10:59',1189.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 (12948,8,8,'2019-08-21 15:10:59',1190.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 (12949,8,8,'2019-08-21 15:10:59',1190.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 (12950,8,8,'2019-08-21 15:10:59',1190.924000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12951,8,8,'2019-08-21 15:10:59',1191.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 (12952,8,8,'2019-08-21 15:10:59',1192.129000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12953,8,8,'2019-08-21 15:10:59',1193.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 (12954,8,8,'2019-08-21 15:10:59',1193.495000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12955,8,8,'2019-08-21 15:10:59',1193.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 (12956,8,8,'2019-08-21 15:10:59',1194.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 (12957,8,8,'2019-08-21 15:10:59',1195.659000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12958,8,8,'2019-08-21 15:10:59',1196.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 (12959,8,8,'2019-08-21 15:10:59',1196.491000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12960,8,8,'2019-08-21 15:10:59',1197.407000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12961,8,8,'2019-08-21 15:10:59',1198.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 (12962,8,8,'2019-08-21 15:10:59',1199.122000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12963,8,8,'2019-08-21 15:10:59',1199.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 (12964,8,8,'2019-08-21 15:10:59',1199.921000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12965,8,8,'2019-08-21 15:10:59',1200.753000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12966,8,8,'2019-08-21 15:10:59',1201.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 (12967,8,8,'2019-08-21 15:10:59',1201.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 (12968,8,8,'2019-08-21 15:10:59',1202.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 (12969,8,8,'2019-08-21 15:10:59',1203.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 (12970,8,8,'2019-08-21 15:10:59',1204.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 (12971,8,8,'2019-08-21 15:10:59',1205.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 (12972,8,8,'2019-08-21 15:10:59',1205.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 (12973,8,8,'2019-08-21 15:10:59',1206.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 (12974,8,8,'2019-08-21 15:10:59',1206.813000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12975,8,8,'2019-08-21 15:10:59',1207.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 (12976,8,8,'2019-08-21 15:10:59',1208.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 (12977,8,8,'2019-08-21 15:10:59',1208.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 (12978,8,8,'2019-08-21 15:10:59',1209.394000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12979,8,8,'2019-08-21 15:10:59',1209.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 (12980,8,8,'2019-08-21 15:10:59',1210.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 (12981,8,8,'2019-08-21 15:10:59',1210.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 (12982,8,8,'2019-08-21 15:10:59',1211.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 (12983,8,8,'2019-08-21 15:10:59',1211.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 (12984,8,8,'2019-08-21 15:10:59',1212.957000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12985,8,8,'2019-08-21 15:10:59',1213.723000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12986,8,8,'2019-08-21 15:10:59',1214.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 (12987,8,8,'2019-08-21 15:10:59',1214.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 (12988,8,8,'2019-08-21 15:10:59',1215.537000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12989,8,8,'2019-08-21 15:10:59',1216.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 (12990,8,8,'2019-08-21 15:10:59',1216.791000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12991,8,8,'2019-08-21 15:10:59',1217.535000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12992,8,8,'2019-08-21 15:10:59',1218.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 (12993,8,8,'2019-08-21 15:10:59',1219.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 (12994,8,8,'2019-08-21 15:10:59',1220.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 (12995,8,8,'2019-08-21 15:10:59',1221.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 (12996,8,8,'2019-08-21 15:10:59',1221.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 (12997,8,8,'2019-08-21 15:10:59',1221.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 (12998,8,8,'2019-08-21 15:10:59',1222.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 (12999,8,8,'2019-08-21 15:10:59',1223.512000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13000,8,8,'2019-08-21 15:10:59',1223.881000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13001,9,9,'2019-08-21 15:11:15',21.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 (13002,9,9,'2019-08-21 15:11:15',22.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 (13003,9,9,'2019-08-21 15:11:15',22.497000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13004,9,9,'2019-08-21 15:11:15',23.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 (13005,9,9,'2019-08-21 15:11:15',24.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 (13006,9,9,'2019-08-21 15:11:15',25.044000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13007,9,9,'2019-08-21 15:11:15',25.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 (13008,9,9,'2019-08-21 15:11:15',25.859000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13009,9,9,'2019-08-21 15:11:15',26.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 (13010,9,9,'2019-08-21 15:11:15',27.724000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13011,9,9,'2019-08-21 15:11:15',28.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 (13012,9,9,'2019-08-21 15:11:15',29.037000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13013,9,9,'2019-08-21 15:11:15',29.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 (13014,9,9,'2019-08-21 15:11:15',30.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 (13015,9,9,'2019-08-21 15:11:15',31.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 (13016,9,9,'2019-08-21 15:11:15',32.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 (13017,9,9,'2019-08-21 15:11:15',33.218000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13018,9,9,'2019-08-21 15:11:15',34.051000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13019,9,9,'2019-08-21 15:11:15',34.933000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13020,9,9,'2019-08-21 15:11:15',35.865000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13021,9,9,'2019-08-21 15:11:15',36.134000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13022,9,9,'2019-08-21 15:11:15',36.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 (13023,9,9,'2019-08-21 15:11:15',37.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 (13024,9,9,'2019-08-21 15:11:15',37.729000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13025,9,9,'2019-08-21 15:11:15',38.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 (13026,9,9,'2019-08-21 15:11:15',39.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 (13027,9,9,'2019-08-21 15:11:15',40.040000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13028,9,9,'2019-08-21 15:11:15',40.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 (13029,9,9,'2019-08-21 15:11:15',40.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 (13030,9,9,'2019-08-21 15:11:15',41.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 (13031,9,9,'2019-08-21 15:11:15',42.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 (13032,9,9,'2019-08-21 15:11:15',42.990000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13033,9,9,'2019-08-21 15:11:15',43.973000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13034,9,9,'2019-08-21 15:11:15',44.371000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13035,9,9,'2019-08-21 15:11:15',44.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 (13036,9,9,'2019-08-21 15:11:15',45.017000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13037,9,9,'2019-08-21 15:11:15',45.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 (13038,9,9,'2019-08-21 15:11:15',46.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 (13039,9,9,'2019-08-21 15:11:15',46.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 (13040,9,9,'2019-08-21 15:11:15',47.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 (13041,9,9,'2019-08-21 15:11:15',48.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 (13042,9,9,'2019-08-21 15:11:15',49.001000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13043,9,9,'2019-08-21 15:11:15',49.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 (13044,9,9,'2019-08-21 15:11:15',50.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 (13045,9,9,'2019-08-21 15:11:15',51.531000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13046,9,9,'2019-08-21 15:11:15',51.881000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13047,9,9,'2019-08-21 15:11:15',52.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 (13048,9,9,'2019-08-21 15:11:15',52.759000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13049,9,9,'2019-08-21 15:11:15',53.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 (13050,9,9,'2019-08-21 15:11:15',53.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 (13051,9,9,'2019-08-21 15:11:15',54.078000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13052,9,9,'2019-08-21 15:11:15',54.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 (13053,9,9,'2019-08-21 15:11:15',55.760000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13054,9,9,'2019-08-21 15:11:15',56.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 (13055,9,9,'2019-08-21 15:11:15',56.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 (13056,9,9,'2019-08-21 15:11:15',57.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 (13057,9,9,'2019-08-21 15:11:15',58.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 (13058,9,9,'2019-08-21 15:11:15',59.390000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13059,9,9,'2019-08-21 15:11:15',60.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 (13060,9,9,'2019-08-21 15:11:15',61.171000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13061,9,9,'2019-08-21 15:11:15',61.541000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13062,9,9,'2019-08-21 15:11:15',62.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 (13063,9,9,'2019-08-21 15:11:15',62.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 (13064,9,9,'2019-08-21 15:11:15',63.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 (13065,9,9,'2019-08-21 15:11:15',63.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 (13066,9,9,'2019-08-21 15:11:15',64.650000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13067,9,9,'2019-08-21 15:11:15',65.003000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13068,9,9,'2019-08-21 15:11:15',65.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 (13069,9,9,'2019-08-21 15:11:15',65.841000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13070,9,9,'2019-08-21 15:11:15',66.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 (13071,9,9,'2019-08-21 15:11:15',67.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 (13072,9,9,'2019-08-21 15:11:15',68.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 (13073,9,9,'2019-08-21 15:11:15',69.295000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13074,9,9,'2019-08-21 15:11:15',69.707000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13075,9,9,'2019-08-21 15:11:15',70.228000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13076,9,9,'2019-08-21 15:11:15',71.093000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13077,9,9,'2019-08-21 15:11:15',71.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 (13078,9,9,'2019-08-21 15:11:15',72.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 (13079,9,9,'2019-08-21 15:11:15',72.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 (13080,9,9,'2019-08-21 15:11:15',73.790000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13081,9,9,'2019-08-21 15:11:15',74.623000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13082,9,9,'2019-08-21 15:11:15',75.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 (13083,9,9,'2019-08-21 15:11:15',76.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 (13084,9,9,'2019-08-21 15:11:15',77.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 (13085,9,9,'2019-08-21 15:11:15',77.904000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13086,9,9,'2019-08-21 15:11:15',78.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 (13087,9,9,'2019-08-21 15:11:15',79.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 (13088,9,9,'2019-08-21 15:11:15',79.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 (13089,9,9,'2019-08-21 15:11:15',80.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 (13090,9,9,'2019-08-21 15:11:15',80.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 (13091,9,9,'2019-08-21 15:11:15',81.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 (13092,9,9,'2019-08-21 15:11:15',82.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 (13093,9,9,'2019-08-21 15:11:15',83.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 (13094,9,9,'2019-08-21 15:11:15',83.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 (13095,9,9,'2019-08-21 15:11:15',84.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 (13096,9,9,'2019-08-21 15:11:15',84.920000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13097,9,9,'2019-08-21 15:11:15',85.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 (13098,9,9,'2019-08-21 15:11:15',86.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 (13099,9,9,'2019-08-21 15:11:15',86.575000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13100,9,9,'2019-08-21 15:11:15',86.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 (13101,9,9,'2019-08-21 15:11:15',87.759000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13102,9,9,'2019-08-21 15:11:15',88.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 (13103,9,9,'2019-08-21 15:11:15',89.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 (13104,9,9,'2019-08-21 15:11:15',89.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 (13105,9,9,'2019-08-21 15:11:15',90.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 (13106,9,9,'2019-08-21 15:11:15',91.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 (13107,9,9,'2019-08-21 15:11:15',91.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 (13108,9,9,'2019-08-21 15:11:15',92.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 (13109,9,9,'2019-08-21 15:11:15',93.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 (13110,9,9,'2019-08-21 15:11:15',93.391000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13111,9,9,'2019-08-21 15:11:15',93.985000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13112,9,9,'2019-08-21 15:11:15',94.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 (13113,9,9,'2019-08-21 15:11:15',95.683000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13114,9,9,'2019-08-21 15:11:15',96.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 (13115,9,9,'2019-08-21 15:11:15',96.482000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13116,9,9,'2019-08-21 15:11:15',97.298000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13117,9,9,'2019-08-21 15:11:15',98.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 (13118,9,9,'2019-08-21 15:11:15',98.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 (13119,9,9,'2019-08-21 15:11:15',99.096000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13120,9,9,'2019-08-21 15:11:15',99.879000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13121,9,9,'2019-08-21 15:11:15',100.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 (13122,9,9,'2019-08-21 15:11:15',101.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 (13123,9,9,'2019-08-21 15:11:15',102.509000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13124,9,9,'2019-08-21 15:11:15',102.827000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13125,9,9,'2019-08-21 15:11:15',103.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 (13126,9,9,'2019-08-21 15:11:15',103.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 (13127,9,9,'2019-08-21 15:11:15',104.257000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13128,9,9,'2019-08-21 15:11:15',105.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 (13129,9,9,'2019-08-21 15:11:15',105.822000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13130,9,9,'2019-08-21 15:11:15',106.188000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13131,9,9,'2019-08-21 15:11:15',106.638000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13132,9,9,'2019-08-21 15:11:15',107.653000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13133,9,9,'2019-08-21 15:11:15',108.669000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13134,9,9,'2019-08-21 15:11:15',109.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 (13135,9,9,'2019-08-21 15:11:15',109.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 (13136,9,9,'2019-08-21 15:11:15',110.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 (13137,9,9,'2019-08-21 15:11:15',111.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 (13138,9,9,'2019-08-21 15:11:15',112.016000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13139,9,9,'2019-08-21 15:11:15',112.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 (13140,9,9,'2019-08-21 15:11:15',113.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 (13141,9,9,'2019-08-21 15:11:15',113.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 (13142,9,9,'2019-08-21 15:11:15',114.122000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13143,9,9,'2019-08-21 15:11:15',114.612000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13144,9,9,'2019-08-21 15:11:15',115.578000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13145,9,9,'2019-08-21 15:11:15',116.577000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13146,9,9,'2019-08-21 15:11:15',117.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 (13147,9,9,'2019-08-21 15:11:15',118.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 (13148,9,9,'2019-08-21 15:11:15',119.240000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13149,9,9,'2019-08-21 15:11:15',119.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 (13150,9,9,'2019-08-21 15:11:15',120.123000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13151,9,9,'2019-08-21 15:11:15',120.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 (13152,9,9,'2019-08-21 15:11:15',121.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 (13153,9,9,'2019-08-21 15:11:15',121.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 (13154,9,9,'2019-08-21 15:11:15',122.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 (13155,9,9,'2019-08-21 15:11:15',123.146000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13156,9,9,'2019-08-21 15:11:15',123.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 (13157,9,9,'2019-08-21 15:11:15',123.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 (13158,9,9,'2019-08-21 15:11:15',124.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 (13159,9,9,'2019-08-21 15:11:15',125.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 (13160,9,9,'2019-08-21 15:11:15',126.267000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13161,9,9,'2019-08-21 15:11:15',127.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 (13162,9,9,'2019-08-21 15:11:15',127.965000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13163,9,9,'2019-08-21 15:11:15',128.254000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13164,9,9,'2019-08-21 15:11:15',128.813000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13165,9,9,'2019-08-21 15:11:15',129.763000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13166,9,9,'2019-08-21 15:11:15',130.628000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13167,9,9,'2019-08-21 15:11:15',131.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 (13168,9,9,'2019-08-21 15:11:15',131.808000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13169,9,9,'2019-08-21 15:11:15',132.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 (13170,9,9,'2019-08-21 15:11:15',133.126000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13171,9,9,'2019-08-21 15:11:15',133.564000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13172,9,9,'2019-08-21 15:11:15',133.991000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13173,9,9,'2019-08-21 15:11:15',134.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 (13174,9,9,'2019-08-21 15:11:15',134.907000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13175,9,9,'2019-08-21 15:11:15',135.673000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13176,9,9,'2019-08-21 15:11:15',136.672000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13177,9,9,'2019-08-21 15:11:15',137.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 (13178,9,9,'2019-08-21 15:11:15',138.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 (13179,9,9,'2019-08-21 15:11:15',139.202000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13180,9,9,'2019-08-21 15:11:15',139.984000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13181,9,9,'2019-08-21 15:11:15',140.337000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13182,9,9,'2019-08-21 15:11:15',140.884000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13183,9,9,'2019-08-21 15:11:15',141.666000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13184,9,9,'2019-08-21 15:11:15',142.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 (13185,9,9,'2019-08-21 15:11:15',142.532000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13186,9,9,'2019-08-21 15:11:15',143.464000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13187,9,9,'2019-08-21 15:11:15',143.760000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13188,9,9,'2019-08-21 15:11:15',144.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 (13189,9,9,'2019-08-21 15:11:15',145.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 (13190,9,9,'2019-08-21 15:11:15',146.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 (13191,9,9,'2019-08-21 15:11:15',146.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 (13192,9,9,'2019-08-21 15:11:15',147.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 (13193,9,9,'2019-08-21 15:11:15',147.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 (13194,9,9,'2019-08-21 15:11:15',148.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 (13195,9,9,'2019-08-21 15:11:15',149.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 (13196,9,9,'2019-08-21 15:11:15',149.724000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13197,9,9,'2019-08-21 15:11:15',150.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 (13198,9,9,'2019-08-21 15:11:15',151.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 (13199,9,9,'2019-08-21 15:11:15',151.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 (13200,9,9,'2019-08-21 15:11:15',152.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 (13201,9,9,'2019-08-21 15:11:15',153.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 (13202,9,9,'2019-08-21 15:11:15',154.036000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13203,9,9,'2019-08-21 15:11:15',155.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 (13204,9,9,'2019-08-21 15:11:15',155.834000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13205,9,9,'2019-08-21 15:11:15',156.750000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13206,9,9,'2019-08-21 15:11:15',157.094000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13207,9,9,'2019-08-21 15:11:15',157.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 (13208,9,9,'2019-08-21 15:11:15',157.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 (13209,9,9,'2019-08-21 15:11:15',158.414000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13210,9,9,'2019-08-21 15:11:15',158.841000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13211,9,9,'2019-08-21 15:11:15',159.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 (13212,9,9,'2019-08-21 15:11:15',160.079000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13213,9,9,'2019-08-21 15:11:15',161.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 (13214,9,9,'2019-08-21 15:11:15',161.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 (13215,9,9,'2019-08-21 15:11:15',162.727000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13216,9,9,'2019-08-21 15:11:15',163.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 (13217,9,9,'2019-08-21 15:11:15',163.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 (13218,9,9,'2019-08-21 15:11:15',164.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 (13219,9,9,'2019-08-21 15:11:15',164.897000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13220,9,9,'2019-08-21 15:11:15',165.290000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13221,9,9,'2019-08-21 15:11:15',165.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 (13222,9,9,'2019-08-21 15:11:15',166.223000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13223,9,9,'2019-08-21 15:11:15',167.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 (13224,9,9,'2019-08-21 15:11:15',167.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 (13225,9,9,'2019-08-21 15:11:15',168.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 (13226,9,9,'2019-08-21 15:11:15',169.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 (13227,9,9,'2019-08-21 15:11:15',169.936000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13228,9,9,'2019-08-21 15:11:15',170.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 (13229,9,9,'2019-08-21 15:11:15',170.918000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13230,9,9,'2019-08-21 15:11:15',171.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 (13231,9,9,'2019-08-21 15:11:15',172.699000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13232,9,9,'2019-08-21 15:11:15',173.647000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13233,9,9,'2019-08-21 15:11:15',174.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 (13234,9,9,'2019-08-21 15:11:15',174.850000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13235,9,9,'2019-08-21 15:11:15',175.279000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13236,9,9,'2019-08-21 15:11:15',175.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 (13237,9,9,'2019-08-21 15:11:15',176.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 (13238,9,9,'2019-08-21 15:11:15',177.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 (13239,9,9,'2019-08-21 15:11:15',178.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 (13240,9,9,'2019-08-21 15:11:15',178.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 (13241,9,9,'2019-08-21 15:11:15',179.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 (13242,9,9,'2019-08-21 15:11:15',180.230000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13243,9,9,'2019-08-21 15:11:15',180.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 (13244,9,9,'2019-08-21 15:11:15',181.622000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13245,9,9,'2019-08-21 15:11:15',182.555000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13246,9,9,'2019-08-21 15:11:15',183.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 (13247,9,9,'2019-08-21 15:11:15',183.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 (13248,9,9,'2019-08-21 15:11:15',184.453000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13249,9,9,'2019-08-21 15:11:15',185.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 (13250,9,9,'2019-08-21 15:11:15',186.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 (13251,9,9,'2019-08-21 15:11:15',187.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 (13252,9,9,'2019-08-21 15:11:15',188.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 (13253,9,9,'2019-08-21 15:11:15',188.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 (13254,9,9,'2019-08-21 15:11:15',189.355000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13255,9,9,'2019-08-21 15:11:15',189.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 (13256,9,9,'2019-08-21 15:11:15',190.204000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13257,9,9,'2019-08-21 15:11:15',190.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 (13258,9,9,'2019-08-21 15:11:15',191.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 (13259,9,9,'2019-08-21 15:11:15',192.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 (13260,9,9,'2019-08-21 15:11:15',192.717000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13261,9,9,'2019-08-21 15:11:15',193.077000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13262,9,9,'2019-08-21 15:11:15',193.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 (13263,9,9,'2019-08-21 15:11:15',193.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 (13264,9,9,'2019-08-21 15:11:15',194.809000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13265,9,9,'2019-08-21 15:11:15',195.574000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13266,9,9,'2019-08-21 15:11:15',196.423000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13267,9,9,'2019-08-21 15:11:15',196.775000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13268,9,9,'2019-08-21 15:11:15',197.355000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13269,9,9,'2019-08-21 15:11:15',197.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 (13270,9,9,'2019-08-21 15:11:15',198.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 (13271,9,9,'2019-08-21 15:11:15',199.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 (13272,9,9,'2019-08-21 15:11:15',200.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 (13273,9,9,'2019-08-21 15:11:15',201.001000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13274,9,9,'2019-08-21 15:11:15',201.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 (13275,9,9,'2019-08-21 15:11:15',201.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 (13276,9,9,'2019-08-21 15:11:15',202.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 (13277,9,9,'2019-08-21 15:11:15',203.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 (13278,9,9,'2019-08-21 15:11:15',204.248000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13279,9,9,'2019-08-21 15:11:15',204.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 (13280,9,9,'2019-08-21 15:11:15',205.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 (13281,9,9,'2019-08-21 15:11:15',206.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 (13282,9,9,'2019-08-21 15:11:15',207.045000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13283,9,9,'2019-08-21 15:11:15',207.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 (13284,9,9,'2019-08-21 15:11:15',208.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 (13285,9,9,'2019-08-21 15:11:15',208.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 (13286,9,9,'2019-08-21 15:11:15',208.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 (13287,9,9,'2019-08-21 15:11:15',209.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 (13288,9,9,'2019-08-21 15:11:15',210.674000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13289,9,9,'2019-08-21 15:11:15',211.474000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13290,9,9,'2019-08-21 15:11:15',212.289000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13291,9,9,'2019-08-21 15:11:15',212.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 (13292,9,9,'2019-08-21 15:11:15',213.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 (13293,9,9,'2019-08-21 15:11:15',213.441000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13294,9,9,'2019-08-21 15:11:15',213.971000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13295,9,9,'2019-08-21 15:11:15',214.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 (13296,9,9,'2019-08-21 15:11:15',215.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 (13297,9,9,'2019-08-21 15:11:15',216.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 (13298,9,9,'2019-08-21 15:11:15',216.924000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13299,9,9,'2019-08-21 15:11:15',217.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 (13300,9,9,'2019-08-21 15:11:15',218.433000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13301,9,9,'2019-08-21 15:11:15',219.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 (13302,9,9,'2019-08-21 15:11:15',220.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 (13303,9,9,'2019-08-21 15:11:15',220.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 (13304,9,9,'2019-08-21 15:11:15',221.029000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13305,9,9,'2019-08-21 15:11:15',221.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 (13306,9,9,'2019-08-21 15:11:15',222.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 (13307,9,9,'2019-08-21 15:11:15',222.878000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13308,9,9,'2019-08-21 15:11:15',223.826000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13309,9,9,'2019-08-21 15:11:15',224.692000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13310,9,9,'2019-08-21 15:11:15',225.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 (13311,9,9,'2019-08-21 15:11:15',225.607000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13312,9,9,'2019-08-21 15:11:15',226.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 (13313,9,9,'2019-08-21 15:11:15',227.355000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13314,9,9,'2019-08-21 15:11:15',228.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 (13315,9,9,'2019-08-21 15:11:15',229.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 (13316,9,9,'2019-08-21 15:11:15',229.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 (13317,9,9,'2019-08-21 15:11:15',230.350000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13318,9,9,'2019-08-21 15:11:15',230.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 (13319,9,9,'2019-08-21 15:11:15',231.076000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13320,9,9,'2019-08-21 15:11:15',231.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 (13321,9,9,'2019-08-21 15:11:15',232.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 (13322,9,9,'2019-08-21 15:11:15',233.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 (13323,9,9,'2019-08-21 15:11:15',233.383000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13324,9,9,'2019-08-21 15:11:15',234.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 (13325,9,9,'2019-08-21 15:11:15',235.147000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13326,9,9,'2019-08-21 15:11:15',235.930000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13327,9,9,'2019-08-21 15:11:15',236.295000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13328,9,9,'2019-08-21 15:11:15',236.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 (13329,9,9,'2019-08-21 15:11:15',237.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 (13330,9,9,'2019-08-21 15:11:15',238.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 (13331,9,9,'2019-08-21 15:11:15',238.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 (13332,9,9,'2019-08-21 15:11:15',239.326000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13333,9,9,'2019-08-21 15:11:15',240.158000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13334,9,9,'2019-08-21 15:11:15',240.991000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13335,9,9,'2019-08-21 15:11:15',241.823000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13336,9,9,'2019-08-21 15:11:15',242.149000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13337,9,9,'2019-08-21 15:11:15',242.689000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13338,9,9,'2019-08-21 15:11:15',243.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 (13339,9,9,'2019-08-21 15:11:15',243.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 (13340,9,9,'2019-08-21 15:11:15',244.487000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13341,9,9,'2019-08-21 15:11:15',245.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 (13342,9,9,'2019-08-21 15:11:15',246.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 (13343,9,9,'2019-08-21 15:11:15',246.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 (13344,9,9,'2019-08-21 15:11:15',246.901000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13345,9,9,'2019-08-21 15:11:15',247.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 (13346,9,9,'2019-08-21 15:11:15',248.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 (13347,9,9,'2019-08-21 15:11:15',249.249000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13348,9,9,'2019-08-21 15:11:15',249.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 (13349,9,9,'2019-08-21 15:11:15',250.098000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13350,9,9,'2019-08-21 15:11:15',250.417000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13351,9,9,'2019-08-21 15:11:15',251.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 (13352,9,9,'2019-08-21 15:11:15',251.879000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13353,9,9,'2019-08-21 15:11:15',252.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 (13354,9,9,'2019-08-21 15:11:15',253.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 (13355,9,9,'2019-08-21 15:11:15',254.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 (13356,9,9,'2019-08-21 15:11:15',255.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 (13357,9,9,'2019-08-21 15:11:15',256.308000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13358,9,9,'2019-08-21 15:11:15',256.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 (13359,9,9,'2019-08-21 15:11:15',257.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 (13360,9,9,'2019-08-21 15:11:15',257.503000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13361,9,9,'2019-08-21 15:11:15',258.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 (13362,9,9,'2019-08-21 15:11:15',258.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 (13363,9,9,'2019-08-21 15:11:15',258.871000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13364,9,9,'2019-08-21 15:11:15',259.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 (13365,9,9,'2019-08-21 15:11:15',260.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 (13366,9,9,'2019-08-21 15:11:15',261.585000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13367,9,9,'2019-08-21 15:11:15',262.046000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13368,9,9,'2019-08-21 15:11:15',262.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 (13369,9,9,'2019-08-21 15:11:15',263.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 (13370,9,9,'2019-08-21 15:11:15',263.711000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13371,9,9,'2019-08-21 15:11:15',264.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 (13372,9,9,'2019-08-21 15:11:15',265.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 (13373,9,9,'2019-08-21 15:11:15',265.538000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13374,9,9,'2019-08-21 15:11:15',266.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 (13375,9,9,'2019-08-21 15:11:15',267.029000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13376,9,9,'2019-08-21 15:11:15',267.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 (13377,9,9,'2019-08-21 15:11:15',268.827000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13378,9,9,'2019-08-21 15:11:15',269.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 (13379,9,9,'2019-08-21 15:11:15',270.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 (13380,9,9,'2019-08-21 15:11:15',271.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 (13381,9,9,'2019-08-21 15:11:15',271.888000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13382,9,9,'2019-08-21 15:11:15',272.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 (13383,9,9,'2019-08-21 15:11:15',273.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 (13384,9,9,'2019-08-21 15:11:15',273.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 (13385,9,9,'2019-08-21 15:11:15',274.121000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13386,9,9,'2019-08-21 15:11:15',274.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 (13387,9,9,'2019-08-21 15:11:15',275.087000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13388,9,9,'2019-08-21 15:11:15',275.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 (13389,9,9,'2019-08-21 15:11:15',276.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 (13390,9,9,'2019-08-21 15:11:15',277.435000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13391,9,9,'2019-08-21 15:11:15',277.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 (13392,9,9,'2019-08-21 15:11:15',278.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 (13393,9,9,'2019-08-21 15:11:15',279.249000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13394,9,9,'2019-08-21 15:11:15',280.198000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13395,9,9,'2019-08-21 15:11:15',280.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 (13396,9,9,'2019-08-21 15:11:15',281.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 (13397,9,9,'2019-08-21 15:11:15',281.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 (13398,9,9,'2019-08-21 15:11:15',282.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 (13399,9,9,'2019-08-21 15:11:15',283.811000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13400,9,9,'2019-08-21 15:11:15',284.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 (13401,9,9,'2019-08-21 15:11:15',300.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 (13402,9,9,'2019-08-21 15:11:15',324.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 (13403,9,9,'2019-08-21 15:11:15',325.336000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13404,9,9,'2019-08-21 15:11:15',326.234000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13405,9,9,'2019-08-21 15:11:15',326.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 (13406,9,9,'2019-08-21 15:11:15',327.084000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13407,9,9,'2019-08-21 15:11:15',327.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 (13408,9,9,'2019-08-21 15:11:15',327.982000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13409,9,9,'2019-08-21 15:11:15',328.849000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13410,9,9,'2019-08-21 15:11:15',329.864000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13411,9,9,'2019-08-21 15:11:15',330.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 (13412,9,9,'2019-08-21 15:11:15',330.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 (13413,9,9,'2019-08-21 15:11:15',331.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 (13414,9,9,'2019-08-21 15:11:15',332.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 (13415,9,9,'2019-08-21 15:11:15',332.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 (13416,9,9,'2019-08-21 15:11:15',333.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 (13417,9,9,'2019-08-21 15:11:15',334.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 (13418,9,9,'2019-08-21 15:11:15',335.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 (13419,9,9,'2019-08-21 15:11:15',335.957000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13420,9,9,'2019-08-21 15:11:15',336.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 (13421,9,9,'2019-08-21 15:11:15',337.622000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13422,9,9,'2019-08-21 15:11:15',338.149000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13423,9,9,'2019-08-21 15:11:15',338.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 (13424,9,9,'2019-08-21 15:11:15',339.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 (13425,9,9,'2019-08-21 15:11:15',339.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 (13426,9,9,'2019-08-21 15:11:15',340.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 (13427,9,9,'2019-08-21 15:11:15',341.302000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13428,9,9,'2019-08-21 15:11:15',342.150000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13429,9,9,'2019-08-21 15:11:15',342.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 (13430,9,9,'2019-08-21 15:11:15',343.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 (13431,9,9,'2019-08-21 15:11:15',343.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 (13432,9,9,'2019-08-21 15:11:15',344.598000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13433,9,9,'2019-08-21 15:11:15',345.044000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13434,9,9,'2019-08-21 15:11:15',345.464000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13435,9,9,'2019-08-21 15:11:15',345.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 (13436,9,9,'2019-08-21 15:11:15',346.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 (13437,9,9,'2019-08-21 15:11:15',347.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 (13438,9,9,'2019-08-21 15:11:15',348.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 (13439,9,9,'2019-08-21 15:11:15',348.648000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13440,9,9,'2019-08-21 15:11:15',349.359000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13441,9,9,'2019-08-21 15:11:15',350.176000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13442,9,9,'2019-08-21 15:11:15',351.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 (13443,9,9,'2019-08-21 15:11:15',351.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 (13444,9,9,'2019-08-21 15:11:15',352.839000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13445,9,9,'2019-08-21 15:11:15',353.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 (13446,9,9,'2019-08-21 15:11:15',354.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 (13447,9,9,'2019-08-21 15:11:15',354.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 (13448,9,9,'2019-08-21 15:11:15',355.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 (13449,9,9,'2019-08-21 15:11:15',355.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 (13450,9,9,'2019-08-21 15:11:15',356.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 (13451,9,9,'2019-08-21 15:11:15',357.135000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13452,9,9,'2019-08-21 15:11:15',358.133000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13453,9,9,'2019-08-21 15:11:15',358.470000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13454,9,9,'2019-08-21 15:11:15',359.132000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13455,9,9,'2019-08-21 15:11:15',359.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 (13456,9,9,'2019-08-21 15:11:15',360.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 (13457,9,9,'2019-08-21 15:11:15',360.863000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13458,9,9,'2019-08-21 15:11:15',361.779000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13459,9,9,'2019-08-21 15:11:15',362.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 (13460,9,9,'2019-08-21 15:11:15',362.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 (13461,9,9,'2019-08-21 15:11:15',363.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 (13462,9,9,'2019-08-21 15:11:15',364.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 (13463,9,9,'2019-08-21 15:11:15',364.759000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13464,9,9,'2019-08-21 15:11:15',365.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 (13465,9,9,'2019-08-21 15:11:15',366.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 (13466,9,9,'2019-08-21 15:11:15',367.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 (13467,9,9,'2019-08-21 15:11:15',367.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 (13468,9,9,'2019-08-21 15:11:15',368.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 (13469,9,9,'2019-08-21 15:11:15',368.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 (13470,9,9,'2019-08-21 15:11:15',369.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 (13471,9,9,'2019-08-21 15:11:15',370.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 (13472,9,9,'2019-08-21 15:11:15',370.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 (13473,9,9,'2019-08-21 15:11:15',371.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 (13474,9,9,'2019-08-21 15:11:15',372.484000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13475,9,9,'2019-08-21 15:11:15',372.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 (13476,9,9,'2019-08-21 15:11:15',373.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 (13477,9,9,'2019-08-21 15:11:15',373.642000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13478,9,9,'2019-08-21 15:11:15',374.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 (13479,9,9,'2019-08-21 15:11:15',374.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 (13480,9,9,'2019-08-21 15:11:15',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 (13481,9,9,'2019-08-21 15:11:15',376.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 (13482,9,9,'2019-08-21 15:11:15',377.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 (13483,9,9,'2019-08-21 15:11:15',378.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 (13484,9,9,'2019-08-21 15:11:15',378.444000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13485,9,9,'2019-08-21 15:11:15',379.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 (13486,9,9,'2019-08-21 15:11:15',380.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 (13487,9,9,'2019-08-21 15:11:15',380.728000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13488,9,9,'2019-08-21 15:11:15',381.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 (13489,9,9,'2019-08-21 15:11:15',382.023000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13490,9,9,'2019-08-21 15:11:15',383.022000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13491,9,9,'2019-08-21 15:11:15',383.872000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13492,9,9,'2019-08-21 15:11:15',384.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 (13493,9,9,'2019-08-21 15:11:15',385.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 (13494,9,9,'2019-08-21 15:11:15',385.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 (13495,9,9,'2019-08-21 15:11:15',386.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 (13496,9,9,'2019-08-21 15:11:15',387.269000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13497,9,9,'2019-08-21 15:11:15',387.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 (13498,9,9,'2019-08-21 15:11:15',388.101000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13499,9,9,'2019-08-21 15:11:15',389.050000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13500,9,9,'2019-08-21 15:11:15',389.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 (13501,9,9,'2019-08-21 15:11:15',389.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 (13502,9,9,'2019-08-21 15:11:15',390.848000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13503,9,9,'2019-08-21 15:11:15',391.747000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13504,9,9,'2019-08-21 15:11:15',392.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 (13505,9,9,'2019-08-21 15:11:15',392.933000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13506,9,9,'2019-08-21 15:11:15',393.611000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13507,9,9,'2019-08-21 15:11:15',394.032000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13508,9,9,'2019-08-21 15:11:15',394.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 (13509,9,9,'2019-08-21 15:11:15',395.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 (13510,9,9,'2019-08-21 15:11:15',395.749000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13511,9,9,'2019-08-21 15:11:15',396.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 (13512,9,9,'2019-08-21 15:11:15',397.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 (13513,9,9,'2019-08-21 15:11:15',397.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 (13514,9,9,'2019-08-21 15:11:15',398.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 (13515,9,9,'2019-08-21 15:11:15',399.755000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13516,9,9,'2019-08-21 15:11:15',400.604000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13517,9,9,'2019-08-21 15:11:15',400.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 (13518,9,9,'2019-08-21 15:11:15',401.503000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13519,9,9,'2019-08-21 15:11:15',402.418000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13520,9,9,'2019-08-21 15:11:15',402.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 (13521,9,9,'2019-08-21 15:11:15',403.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 (13522,9,9,'2019-08-21 15:11:15',404.166000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13523,9,9,'2019-08-21 15:11:15',405.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 (13524,9,9,'2019-08-21 15:11:15',405.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 (13525,9,9,'2019-08-21 15:11:15',406.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 (13526,9,9,'2019-08-21 15:11:15',407.104000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13527,9,9,'2019-08-21 15:11:15',407.679000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13528,9,9,'2019-08-21 15:11:15',408.044000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13529,9,9,'2019-08-21 15:11:15',408.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 (13530,9,9,'2019-08-21 15:11:15',409.410000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13531,9,9,'2019-08-21 15:11:15',409.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 (13532,9,9,'2019-08-21 15:11:15',410.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 (13533,9,9,'2019-08-21 15:11:15',411.325000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13534,9,9,'2019-08-21 15:11:15',412.124000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13535,9,9,'2019-08-21 15:11:15',413.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 (13536,9,9,'2019-08-21 15:11:15',413.973000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13537,9,9,'2019-08-21 15:11:15',414.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 (13538,9,9,'2019-08-21 15:11:15',414.938000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13539,9,9,'2019-08-21 15:11:15',415.332000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13540,9,9,'2019-08-21 15:11:15',415.903000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13541,9,9,'2019-08-21 15:11:15',416.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 (13542,9,9,'2019-08-21 15:11:15',417.718000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13543,9,9,'2019-08-21 15:11:15',418.017000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13544,9,9,'2019-08-21 15:11:15',418.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 (13545,9,9,'2019-08-21 15:11:15',419.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 (13546,9,9,'2019-08-21 15:11:15',420.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 (13547,9,9,'2019-08-21 15:11:15',420.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 (13548,9,9,'2019-08-21 15:11:15',421.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 (13549,9,9,'2019-08-21 15:11:15',421.914000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13550,9,9,'2019-08-21 15:11:15',422.206000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13551,9,9,'2019-08-21 15:11:15',422.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 (13552,9,9,'2019-08-21 15:11:15',423.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 (13553,9,9,'2019-08-21 15:11:15',424.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 (13554,9,9,'2019-08-21 15:11:15',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 (13555,9,9,'2019-08-21 15:11:15',425.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 (13556,9,9,'2019-08-21 15:11:15',426.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 (13557,9,9,'2019-08-21 15:11:15',427.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 (13558,9,9,'2019-08-21 15:11:15',427.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 (13559,9,9,'2019-08-21 15:11:15',428.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 (13560,9,9,'2019-08-21 15:11:15',428.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 (13561,9,9,'2019-08-21 15:11:15',429.639000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13562,9,9,'2019-08-21 15:11:15',430.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 (13563,9,9,'2019-08-21 15:11:15',431.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 (13564,9,9,'2019-08-21 15:11:15',431.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 (13565,9,9,'2019-08-21 15:11:15',432.020000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13566,9,9,'2019-08-21 15:11:15',432.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 (13567,9,9,'2019-08-21 15:11:15',433.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 (13568,9,9,'2019-08-21 15:11:15',434.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 (13569,9,9,'2019-08-21 15:11:15',435.208000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13570,9,9,'2019-08-21 15:11:15',435.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 (13571,9,9,'2019-08-21 15:11:15',436.564000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13572,9,9,'2019-08-21 15:11:15',437.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 (13573,9,9,'2019-08-21 15:11:15',438.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 (13574,9,9,'2019-08-21 15:11:15',438.495000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13575,9,9,'2019-08-21 15:11:15',439.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 (13576,9,9,'2019-08-21 15:11:15',439.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 (13577,9,9,'2019-08-21 15:11:15',440.360000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13578,9,9,'2019-08-21 15:11:15',441.209000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13579,9,9,'2019-08-21 15:11:15',442.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 (13580,9,9,'2019-08-21 15:11:15',442.907000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13581,9,9,'2019-08-21 15:11:15',443.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 (13582,9,9,'2019-08-21 15:11:15',443.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 (13583,9,9,'2019-08-21 15:11:15',444.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 (13584,9,9,'2019-08-21 15:11:15',444.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 (13585,9,9,'2019-08-21 15:11:15',445.421000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13586,9,9,'2019-08-21 15:11:15',446.304000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13587,9,9,'2019-08-21 15:11:15',447.069000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13588,9,9,'2019-08-21 15:11:15',448.002000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13589,9,9,'2019-08-21 15:11:15',448.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 (13590,9,9,'2019-08-21 15:11:15',448.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 (13591,9,9,'2019-08-21 15:11:15',449.700000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13592,9,9,'2019-08-21 15:11:15',450.649000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13593,9,9,'2019-08-21 15:11:15',450.976000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13594,9,9,'2019-08-21 15:11:15',451.415000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13595,9,9,'2019-08-21 15:11:15',451.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 (13596,9,9,'2019-08-21 15:11:15',452.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 (13597,9,9,'2019-08-21 15:11:15',453.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 (13598,9,9,'2019-08-21 15:11:15',454.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 (13599,9,9,'2019-08-21 15:11:15',454.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 (13600,9,9,'2019-08-21 15:11:15',455.235000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13601,9,9,'2019-08-21 15:11:15',455.776000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13602,9,9,'2019-08-21 15:11:15',456.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 (13603,9,9,'2019-08-21 15:11:15',457.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 (13604,9,9,'2019-08-21 15:11:15',458.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 (13605,9,9,'2019-08-21 15:11:15',459.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 (13606,9,9,'2019-08-21 15:11:15',459.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 (13607,9,9,'2019-08-21 15:11:15',460.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 (13608,9,9,'2019-08-21 15:11:15',460.747000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13609,9,9,'2019-08-21 15:11:15',461.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 (13610,9,9,'2019-08-21 15:11:15',462.104000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13611,9,9,'2019-08-21 15:11:15',462.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 (13612,9,9,'2019-08-21 15:11:15',463.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 (13613,9,9,'2019-08-21 15:11:15',464.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 (13614,9,9,'2019-08-21 15:11:15',464.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 (13615,9,9,'2019-08-21 15:11:15',465.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 (13616,9,9,'2019-08-21 15:11:15',466.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 (13617,9,9,'2019-08-21 15:11:15',466.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 (13618,9,9,'2019-08-21 15:11:15',467.480000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13619,9,9,'2019-08-21 15:11:15',468.263000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13620,9,9,'2019-08-21 15:11:15',469.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 (13621,9,9,'2019-08-21 15:11:15',469.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 (13622,9,9,'2019-08-21 15:11:15',469.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 (13623,9,9,'2019-08-21 15:11:15',470.777000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13624,9,9,'2019-08-21 15:11:15',471.084000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13625,9,9,'2019-08-21 15:11:15',471.793000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13626,9,9,'2019-08-21 15:11:15',472.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 (13627,9,9,'2019-08-21 15:11:15',473.374000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13628,9,9,'2019-08-21 15:11:15',474.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 (13629,9,9,'2019-08-21 15:11:15',475.155000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13630,9,9,'2019-08-21 15:11:15',476.121000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13631,9,9,'2019-08-21 15:11:15',476.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 (13632,9,9,'2019-08-21 15:11:15',476.903000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13633,9,9,'2019-08-21 15:11:15',477.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 (13634,9,9,'2019-08-21 15:11:15',477.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 (13635,9,9,'2019-08-21 15:11:15',478.251000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13636,9,9,'2019-08-21 15:11:15',478.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 (13637,9,9,'2019-08-21 15:11:15',479.400000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13638,9,9,'2019-08-21 15:11:15',480.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 (13639,9,9,'2019-08-21 15:11:15',480.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 (13640,9,9,'2019-08-21 15:11:15',481.332000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13641,9,9,'2019-08-21 15:11:15',482.147000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13642,9,9,'2019-08-21 15:11:15',483.113000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13643,9,9,'2019-08-21 15:11:15',483.946000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13644,9,9,'2019-08-21 15:11:15',484.911000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13645,9,9,'2019-08-21 15:11:15',485.297000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13646,9,9,'2019-08-21 15:11:15',485.777000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13647,9,9,'2019-08-21 15:11:15',486.760000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13648,9,9,'2019-08-21 15:11:15',487.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 (13649,9,9,'2019-08-21 15:11:15',487.608000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13650,9,9,'2019-08-21 15:11:15',488.407000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13651,9,9,'2019-08-21 15:11:15',488.749000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13652,9,9,'2019-08-21 15:11:15',489.257000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13653,9,9,'2019-08-21 15:11:15',490.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 (13654,9,9,'2019-08-21 15:11:15',491.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 (13655,9,9,'2019-08-21 15:11:15',491.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 (13656,9,9,'2019-08-21 15:11:15',491.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 (13657,9,9,'2019-08-21 15:11:15',492.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 (13658,9,9,'2019-08-21 15:11:15',493.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 (13659,9,9,'2019-08-21 15:11:15',494.784000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13660,9,9,'2019-08-21 15:11:15',495.068000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13661,9,9,'2019-08-21 15:11:15',495.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 (13662,9,9,'2019-08-21 15:11:15',496.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 (13663,9,9,'2019-08-21 15:11:15',496.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 (13664,9,9,'2019-08-21 15:11:15',497.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 (13665,9,9,'2019-08-21 15:11:15',498.280000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13666,9,9,'2019-08-21 15:11:15',499.213000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13667,9,9,'2019-08-21 15:11:15',500.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 (13668,9,9,'2019-08-21 15:11:15',500.488000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13669,9,9,'2019-08-21 15:11:15',501.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 (13670,9,9,'2019-08-21 15:11:15',501.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 (13671,9,9,'2019-08-21 15:11:15',502.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 (13672,9,9,'2019-08-21 15:11:15',503.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 (13673,9,9,'2019-08-21 15:11:15',503.972000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13674,9,9,'2019-08-21 15:11:15',504.474000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13675,9,9,'2019-08-21 15:11:15',504.900000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13676,9,9,'2019-08-21 15:11:15',505.406000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13677,9,9,'2019-08-21 15:11:15',505.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 (13678,9,9,'2019-08-21 15:11:15',506.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 (13679,9,9,'2019-08-21 15:11:15',507.171000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13680,9,9,'2019-08-21 15:11:15',508.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 (13681,9,9,'2019-08-21 15:11:15',509.068000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13682,9,9,'2019-08-21 15:11:15',509.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 (13683,9,9,'2019-08-21 15:11:15',510.933000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13684,9,9,'2019-08-21 15:11:15',511.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 (13685,9,9,'2019-08-21 15:11:15',512.138000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13686,9,9,'2019-08-21 15:11:15',512.765000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13687,9,9,'2019-08-21 15:11:15',513.696000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13688,9,9,'2019-08-21 15:11:15',514.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 (13689,9,9,'2019-08-21 15:11:15',514.579000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13690,9,9,'2019-08-21 15:11:15',515.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 (13691,9,9,'2019-08-21 15:11:15',516.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 (13692,9,9,'2019-08-21 15:11:15',516.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 (13693,9,9,'2019-08-21 15:11:15',517.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 (13694,9,9,'2019-08-21 15:11:15',517.976000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13695,9,9,'2019-08-21 15:11:15',518.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 (13696,9,9,'2019-08-21 15:11:15',518.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 (13697,9,9,'2019-08-21 15:11:15',519.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 (13698,9,9,'2019-08-21 15:11:15',520.656000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13699,9,9,'2019-08-21 15:11:15',521.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 (13700,9,9,'2019-08-21 15:11:15',521.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 (13701,9,9,'2019-08-21 15:11:15',522.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 (13702,9,9,'2019-08-21 15:11:15',522.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 (13703,9,9,'2019-08-21 15:11:15',523.036000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13704,9,9,'2019-08-21 15:11:15',523.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 (13705,9,9,'2019-08-21 15:11:15',524.635000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13706,9,9,'2019-08-21 15:11:15',525.450000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13707,9,9,'2019-08-21 15:11:15',526.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 (13708,9,9,'2019-08-21 15:11:15',527.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 (13709,9,9,'2019-08-21 15:11:15',527.502000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13710,9,9,'2019-08-21 15:11:15',527.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 (13711,9,9,'2019-08-21 15:11:15',528.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 (13712,9,9,'2019-08-21 15:11:15',528.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 (13713,9,9,'2019-08-21 15:11:15',529.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 (13714,9,9,'2019-08-21 15:11:15',530.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 (13715,9,9,'2019-08-21 15:11:15',530.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 (13716,9,9,'2019-08-21 15:11:15',531.444000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13717,9,9,'2019-08-21 15:11:15',532.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 (13718,9,9,'2019-08-21 15:11:15',533.408000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13719,9,9,'2019-08-21 15:11:15',534.391000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13720,9,9,'2019-08-21 15:11:15',535.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 (13721,9,9,'2019-08-21 15:11:15',535.567000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13722,9,9,'2019-08-21 15:11:15',536.172000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13723,9,9,'2019-08-21 15:11:15',536.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 (13724,9,9,'2019-08-21 15:11:15',536.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 (13725,9,9,'2019-08-21 15:11:15',537.920000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13726,9,9,'2019-08-21 15:11:15',538.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 (13727,9,9,'2019-08-21 15:11:15',538.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 (13728,9,9,'2019-08-21 15:11:15',539.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 (13729,9,9,'2019-08-21 15:11:15',540.584000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13730,9,9,'2019-08-21 15:11:15',541.434000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13731,9,9,'2019-08-21 15:11:15',542.415000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13732,9,9,'2019-08-21 15:11:15',543.364000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13733,9,9,'2019-08-21 15:11:15',544.163000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13734,9,9,'2019-08-21 15:11:15',544.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 (13735,9,9,'2019-08-21 15:11:15',544.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 (13736,9,9,'2019-08-21 15:11:15',545.895000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13737,9,9,'2019-08-21 15:11:15',546.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 (13738,9,9,'2019-08-21 15:11:15',546.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 (13739,9,9,'2019-08-21 15:11:15',547.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 (13740,9,9,'2019-08-21 15:11:15',547.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 (13741,9,9,'2019-08-21 15:11:15',548.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 (13742,9,9,'2019-08-21 15:11:15',549.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 (13743,9,9,'2019-08-21 15:11:15',549.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 (13744,9,9,'2019-08-21 15:11:15',550.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 (13745,9,9,'2019-08-21 15:11:15',551.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 (13746,9,9,'2019-08-21 15:11:15',552.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 (13747,9,9,'2019-08-21 15:11:15',552.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 (13748,9,9,'2019-08-21 15:11:15',553.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 (13749,9,9,'2019-08-21 15:11:15',554.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 (13750,9,9,'2019-08-21 15:11:15',554.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 (13751,9,9,'2019-08-21 15:11:15',555.685000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13752,9,9,'2019-08-21 15:11:15',556.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 (13753,9,9,'2019-08-21 15:11:15',556.916000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13754,9,9,'2019-08-21 15:11:15',557.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 (13755,9,9,'2019-08-21 15:11:15',557.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 (13756,9,9,'2019-08-21 15:11:15',558.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 (13757,9,9,'2019-08-21 15:11:15',558.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 (13758,9,9,'2019-08-21 15:11:15',559.514000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13759,9,9,'2019-08-21 15:11:15',560.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 (13760,9,9,'2019-08-21 15:11:15',561.295000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13761,9,9,'2019-08-21 15:11:15',562.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 (13762,9,9,'2019-08-21 15:11:15',563.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 (13763,9,9,'2019-08-21 15:11:15',564.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 (13764,9,9,'2019-08-21 15:11:15',564.599000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13765,9,9,'2019-08-21 15:11:15',565.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 (13766,9,9,'2019-08-21 15:11:15',565.567000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13767,9,9,'2019-08-21 15:11:15',566.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 (13768,9,9,'2019-08-21 15:11:15',566.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 (13769,9,9,'2019-08-21 15:11:15',567.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 (13770,9,9,'2019-08-21 15:11:15',568.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 (13771,9,9,'2019-08-21 15:11:15',569.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 (13772,9,9,'2019-08-21 15:11:15',570.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 (13773,9,9,'2019-08-21 15:11:15',571.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 (13774,9,9,'2019-08-21 15:11:15',571.644000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13775,9,9,'2019-08-21 15:11:15',572.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 (13776,9,9,'2019-08-21 15:11:15',572.542000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13777,9,9,'2019-08-21 15:11:15',573.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 (13778,9,9,'2019-08-21 15:11:15',574.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 (13779,9,9,'2019-08-21 15:11:15',574.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 (13780,9,9,'2019-08-21 15:11:15',575.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 (13781,9,9,'2019-08-21 15:11:15',576.116000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13782,9,9,'2019-08-21 15:11:15',576.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 (13783,9,9,'2019-08-21 15:11:15',576.964000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13784,9,9,'2019-08-21 15:11:15',577.644000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13785,9,9,'2019-08-21 15:11:15',578.426000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13786,9,9,'2019-08-21 15:11:15',579.242000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13787,9,9,'2019-08-21 15:11:15',579.639000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13788,9,9,'2019-08-21 15:11:15',580.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 (13789,9,9,'2019-08-21 15:11:15',581.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 (13790,9,9,'2019-08-21 15:11:15',582.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 (13791,9,9,'2019-08-21 15:11:15',582.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 (13792,9,9,'2019-08-21 15:11:15',582.921000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13793,9,9,'2019-08-21 15:11:15',583.870000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13794,9,9,'2019-08-21 15:11:15',584.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 (13795,9,9,'2019-08-21 15:11:15',585.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 (13796,9,9,'2019-08-21 15:11:15',586.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 (13797,9,9,'2019-08-21 15:11:15',587.566000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13798,9,9,'2019-08-21 15:11:15',588.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 (13799,9,9,'2019-08-21 15:11:15',588.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 (13800,9,9,'2019-08-21 15:11:15',589.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 (13801,9,9,'2019-08-21 15:11:15',589.753000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13802,9,9,'2019-08-21 15:11:15',602.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 (13803,9,9,'2019-08-21 15:11:15',626.723000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13804,9,9,'2019-08-21 15:11:15',627.488000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13805,9,9,'2019-08-21 15:11:15',628.287000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13806,9,9,'2019-08-21 15:11:15',629.053000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13807,9,9,'2019-08-21 15:11:15',629.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 (13808,9,9,'2019-08-21 15:11:15',629.936000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13809,9,9,'2019-08-21 15:11:15',630.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 (13810,9,9,'2019-08-21 15:11:15',631.037000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13811,9,9,'2019-08-21 15:11:15',631.584000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13812,9,9,'2019-08-21 15:11:15',631.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 (13813,9,9,'2019-08-21 15:11:15',632.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 (13814,9,9,'2019-08-21 15:11:15',633.165000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13815,9,9,'2019-08-21 15:11:15',633.980000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13816,9,9,'2019-08-21 15:11:15',634.258000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13817,9,9,'2019-08-21 15:11:15',634.880000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13818,9,9,'2019-08-21 15:11:15',635.829000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13819,9,9,'2019-08-21 15:11:15',636.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 (13820,9,9,'2019-08-21 15:11:15',637.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 (13821,9,9,'2019-08-21 15:11:15',637.871000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13822,9,9,'2019-08-21 15:11:15',638.359000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13823,9,9,'2019-08-21 15:11:15',639.342000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13824,9,9,'2019-08-21 15:11:15',640.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 (13825,9,9,'2019-08-21 15:11:15',641.239000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13826,9,9,'2019-08-21 15:11:15',641.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 (13827,9,9,'2019-08-21 15:11:15',642.155000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13828,9,9,'2019-08-21 15:11:15',642.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 (13829,9,9,'2019-08-21 15:11:15',643.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 (13830,9,9,'2019-08-21 15:11:15',643.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 (13831,9,9,'2019-08-21 15:11:15',643.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 (13832,9,9,'2019-08-21 15:11:15',644.619000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13833,9,9,'2019-08-21 15:11:15',645.568000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13834,9,9,'2019-08-21 15:11:15',646.400000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13835,9,9,'2019-08-21 15:11:15',647.383000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13836,9,9,'2019-08-21 15:11:15',648.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 (13837,9,9,'2019-08-21 15:11:15',649.197000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13838,9,9,'2019-08-21 15:11:15',650.180000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13839,9,9,'2019-08-21 15:11:15',650.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 (13840,9,9,'2019-08-21 15:11:15',651.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 (13841,9,9,'2019-08-21 15:11:15',651.861000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13842,9,9,'2019-08-21 15:11:15',652.296000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13843,9,9,'2019-08-21 15:11:15',652.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 (13844,9,9,'2019-08-21 15:11:15',653.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 (13845,9,9,'2019-08-21 15:11:15',654.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 (13846,9,9,'2019-08-21 15:11:15',655.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 (13847,9,9,'2019-08-21 15:11:15',656.106000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13848,9,9,'2019-08-21 15:11:15',656.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 (13849,9,9,'2019-08-21 15:11:15',656.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 (13850,9,9,'2019-08-21 15:11:15',657.334000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13851,9,9,'2019-08-21 15:11:15',657.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 (13852,9,9,'2019-08-21 15:11:15',658.303000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13853,9,9,'2019-08-21 15:11:15',658.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 (13854,9,9,'2019-08-21 15:11:15',659.653000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13855,9,9,'2019-08-21 15:11:15',660.552000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13856,9,9,'2019-08-21 15:11:15',661.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 (13857,9,9,'2019-08-21 15:11:15',661.916000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13858,9,9,'2019-08-21 15:11:15',662.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 (13859,9,9,'2019-08-21 15:11:15',663.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 (13860,9,9,'2019-08-21 15:11:15',663.981000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13861,9,9,'2019-08-21 15:11:15',664.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 (13862,9,9,'2019-08-21 15:11:15',665.490000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13863,9,9,'2019-08-21 15:11:15',665.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 (13864,9,9,'2019-08-21 15:11:15',666.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 (13865,9,9,'2019-08-21 15:11:15',666.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 (13866,9,9,'2019-08-21 15:11:15',667.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 (13867,9,9,'2019-08-21 15:11:15',668.394000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13868,9,9,'2019-08-21 15:11:15',669.176000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13869,9,9,'2019-08-21 15:11:15',670.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 (13870,9,9,'2019-08-21 15:11:15',670.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 (13871,9,9,'2019-08-21 15:11:15',671.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 (13872,9,9,'2019-08-21 15:11:15',672.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 (13873,9,9,'2019-08-21 15:11:15',672.938000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13874,9,9,'2019-08-21 15:11:15',673.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 (13875,9,9,'2019-08-21 15:11:15',673.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 (13876,9,9,'2019-08-21 15:11:15',674.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 (13877,9,9,'2019-08-21 15:11:15',674.969000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13878,9,9,'2019-08-21 15:11:15',675.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 (13879,9,9,'2019-08-21 15:11:15',675.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 (13880,9,9,'2019-08-21 15:11:15',676.268000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13881,9,9,'2019-08-21 15:11:15',677.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 (13882,9,9,'2019-08-21 15:11:15',677.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 (13883,9,9,'2019-08-21 15:11:15',678.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 (13884,9,9,'2019-08-21 15:11:15',679.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 (13885,9,9,'2019-08-21 15:11:15',679.765000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13886,9,9,'2019-08-21 15:11:15',680.746000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13887,9,9,'2019-08-21 15:11:15',681.729000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13888,9,9,'2019-08-21 15:11:15',682.528000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13889,9,9,'2019-08-21 15:11:15',683.394000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13890,9,9,'2019-08-21 15:11:15',683.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 (13891,9,9,'2019-08-21 15:11:15',684.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 (13892,9,9,'2019-08-21 15:11:15',685.292000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13893,9,9,'2019-08-21 15:11:15',685.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 (13894,9,9,'2019-08-21 15:11:15',686.257000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13895,9,9,'2019-08-21 15:11:15',687.173000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13896,9,9,'2019-08-21 15:11:15',688.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 (13897,9,9,'2019-08-21 15:11:15',688.425000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13898,9,9,'2019-08-21 15:11:15',689.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 (13899,9,9,'2019-08-21 15:11:15',689.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 (13900,9,9,'2019-08-21 15:11:15',690.652000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13901,9,9,'2019-08-21 15:11:15',691.585000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13902,9,9,'2019-08-21 15:11:15',691.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 (13903,9,9,'2019-08-21 15:11:15',692.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 (13904,9,9,'2019-08-21 15:11:15',693.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 (13905,9,9,'2019-08-21 15:11:15',693.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 (13906,9,9,'2019-08-21 15:11:15',694.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 (13907,9,9,'2019-08-21 15:11:15',695.514000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13908,9,9,'2019-08-21 15:11:15',696.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 (13909,9,9,'2019-08-21 15:11:15',697.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 (13910,9,9,'2019-08-21 15:11:15',698.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 (13911,9,9,'2019-08-21 15:11:15',698.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 (13912,9,9,'2019-08-21 15:11:15',698.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 (13913,9,9,'2019-08-21 15:11:15',699.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 (13914,9,9,'2019-08-21 15:11:15',699.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 (13915,9,9,'2019-08-21 15:11:15',700.625000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13916,9,9,'2019-08-21 15:11:15',701.474000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13917,9,9,'2019-08-21 15:11:15',702.307000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13918,9,9,'2019-08-21 15:11:15',703.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 (13919,9,9,'2019-08-21 15:11:15',703.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 (13920,9,9,'2019-08-21 15:11:15',704.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 (13921,9,9,'2019-08-21 15:11:15',704.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 (13922,9,9,'2019-08-21 15:11:15',705.171000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13923,9,9,'2019-08-21 15:11:15',705.853000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13924,9,9,'2019-08-21 15:11:15',706.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 (13925,9,9,'2019-08-21 15:11:15',707.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 (13926,9,9,'2019-08-21 15:11:15',708.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 (13927,9,9,'2019-08-21 15:11:15',709.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 (13928,9,9,'2019-08-21 15:11:15',709.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 (13929,9,9,'2019-08-21 15:11:15',710.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 (13930,9,9,'2019-08-21 15:11:15',710.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 (13931,9,9,'2019-08-21 15:11:15',711.246000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13932,9,9,'2019-08-21 15:11:15',712.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 (13933,9,9,'2019-08-21 15:11:15',712.489000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13934,9,9,'2019-08-21 15:11:15',713.111000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13935,9,9,'2019-08-21 15:11:15',713.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 (13936,9,9,'2019-08-21 15:11:15',714.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 (13937,9,9,'2019-08-21 15:11:15',715.194000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13938,9,9,'2019-08-21 15:11:15',715.642000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13939,9,9,'2019-08-21 15:11:15',716.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 (13940,9,9,'2019-08-21 15:11:15',717.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 (13941,9,9,'2019-08-21 15:11:15',717.920000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13942,9,9,'2019-08-21 15:11:15',718.488000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13943,9,9,'2019-08-21 15:11:15',719.421000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13944,9,9,'2019-08-21 15:11:15',720.187000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13945,9,9,'2019-08-21 15:11:15',720.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 (13946,9,9,'2019-08-21 15:11:15',721.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 (13947,9,9,'2019-08-21 15:11:15',721.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 (13948,9,9,'2019-08-21 15:11:15',722.718000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13949,9,9,'2019-08-21 15:11:15',723.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 (13950,9,9,'2019-08-21 15:11:15',723.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 (13951,9,9,'2019-08-21 15:11:15',724.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 (13952,9,9,'2019-08-21 15:11:15',724.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 (13953,9,9,'2019-08-21 15:11:15',725.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 (13954,9,9,'2019-08-21 15:11:15',726.181000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13955,9,9,'2019-08-21 15:11:15',727.013000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13956,9,9,'2019-08-21 15:11:15',727.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 (13957,9,9,'2019-08-21 15:11:15',727.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 (13958,9,9,'2019-08-21 15:11:15',728.811000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13959,9,9,'2019-08-21 15:11:15',729.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 (13960,9,9,'2019-08-21 15:11:15',729.626000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13961,9,9,'2019-08-21 15:11:15',730.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 (13962,9,9,'2019-08-21 15:11:15',731.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 (13963,9,9,'2019-08-21 15:11:15',732.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 (13964,9,9,'2019-08-21 15:11:15',733.056000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13965,9,9,'2019-08-21 15:11:15',733.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 (13966,9,9,'2019-08-21 15:11:15',734.293000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13967,9,9,'2019-08-21 15:11:15',734.754000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13968,9,9,'2019-08-21 15:11:15',735.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 (13969,9,9,'2019-08-21 15:11:15',736.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 (13970,9,9,'2019-08-21 15:11:15',736.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 (13971,9,9,'2019-08-21 15:11:15',737.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 (13972,9,9,'2019-08-21 15:11:15',738.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 (13973,9,9,'2019-08-21 15:11:15',739.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 (13974,9,9,'2019-08-21 15:11:15',739.522000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13975,9,9,'2019-08-21 15:11:15',740.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 (13976,9,9,'2019-08-21 15:11:15',740.798000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13977,9,9,'2019-08-21 15:11:15',741.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 (13978,9,9,'2019-08-21 15:11:15',741.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 (13979,9,9,'2019-08-21 15:11:15',742.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 (13980,9,9,'2019-08-21 15:11:15',743.035000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13981,9,9,'2019-08-21 15:11:15',743.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 (13982,9,9,'2019-08-21 15:11:15',744.244000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13983,9,9,'2019-08-21 15:11:15',744.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 (13984,9,9,'2019-08-21 15:11:15',745.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 (13985,9,9,'2019-08-21 15:11:15',745.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 (13986,9,9,'2019-08-21 15:11:15',746.658000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13987,9,9,'2019-08-21 15:11:15',747.507000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13988,9,9,'2019-08-21 15:11:15',747.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 (13989,9,9,'2019-08-21 15:11:15',748.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 (13990,9,9,'2019-08-21 15:11:15',749.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 (13991,9,9,'2019-08-21 15:11:15',750.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 (13992,9,9,'2019-08-21 15:11:15',750.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 (13993,9,9,'2019-08-21 15:11:15',751.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 (13994,9,9,'2019-08-21 15:11:15',752.060000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13995,9,9,'2019-08-21 15:11:15',752.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 (13996,9,9,'2019-08-21 15:11:15',753.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 (13997,9,9,'2019-08-21 15:11:15',754.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 (13998,9,9,'2019-08-21 15:11:15',755.332000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13999,9,9,'2019-08-21 15:11:15',755.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 (14000,9,9,'2019-08-21 15:11:15',756.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 (14001,9,9,'2019-08-21 15:11:15',756.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 (14002,9,9,'2019-08-21 15:11:15',757.130000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14003,9,9,'2019-08-21 15:11:15',758.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 (14004,9,9,'2019-08-21 15:11:15',758.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 (14005,9,9,'2019-08-21 15:11:15',759.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 (14006,9,9,'2019-08-21 15:11:15',760.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 (14007,9,9,'2019-08-21 15:11:15',760.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 (14008,9,9,'2019-08-21 15:11:15',761.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 (14009,9,9,'2019-08-21 15:11:15',761.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 (14010,9,9,'2019-08-21 15:11:15',762.641000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14011,9,9,'2019-08-21 15:11:15',763.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 (14012,9,9,'2019-08-21 15:11:15',764.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 (14013,9,9,'2019-08-21 15:11:15',764.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 (14014,9,9,'2019-08-21 15:11:15',765.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 (14015,9,9,'2019-08-21 15:11:15',765.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 (14016,9,9,'2019-08-21 15:11:15',766.137000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14017,9,9,'2019-08-21 15:11:15',767.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 (14018,9,9,'2019-08-21 15:11:15',768.018000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14019,9,9,'2019-08-21 15:11:15',768.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 (14020,9,9,'2019-08-21 15:11:15',769.239000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14021,9,9,'2019-08-21 15:11:15',769.833000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14022,9,9,'2019-08-21 15:11:15',770.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 (14023,9,9,'2019-08-21 15:11:15',771.681000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14024,9,9,'2019-08-21 15:11:15',772.463000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14025,9,9,'2019-08-21 15:11:15',772.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 (14026,9,9,'2019-08-21 15:11:15',773.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 (14027,9,9,'2019-08-21 15:11:15',774.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 (14028,9,9,'2019-08-21 15:11:15',775.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 (14029,9,9,'2019-08-21 15:11:15',775.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 (14030,9,9,'2019-08-21 15:11:15',776.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 (14031,9,9,'2019-08-21 15:11:15',776.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 (14032,9,9,'2019-08-21 15:11:15',777.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 (14033,9,9,'2019-08-21 15:11:15',777.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 (14034,9,9,'2019-08-21 15:11:15',778.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 (14035,9,9,'2019-08-21 15:11:15',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 (14036,9,9,'2019-08-21 15:11:15',780.504000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14037,9,9,'2019-08-21 15:11:15',780.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 (14038,9,9,'2019-08-21 15:11:15',781.370000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14039,9,9,'2019-08-21 15:11:15',782.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 (14040,9,9,'2019-08-21 15:11:15',782.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 (14041,9,9,'2019-08-21 15:11:15',783.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 (14042,9,9,'2019-08-21 15:11:15',784.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 (14043,9,9,'2019-08-21 15:11:15',784.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 (14044,9,9,'2019-08-21 15:11:15',785.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 (14045,9,9,'2019-08-21 15:11:15',785.766000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14046,9,9,'2019-08-21 15:11:15',786.697000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14047,9,9,'2019-08-21 15:11:15',787.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 (14048,9,9,'2019-08-21 15:11:15',787.904000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14049,9,9,'2019-08-21 15:11:15',788.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 (14050,9,9,'2019-08-21 15:11:15',789.178000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14051,9,9,'2019-08-21 15:11:15',790.160000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14052,9,9,'2019-08-21 15:11:15',791.109000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14053,9,9,'2019-08-21 15:11:15',791.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 (14054,9,9,'2019-08-21 15:11:15',792.758000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14055,9,9,'2019-08-21 15:11:15',793.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 (14056,9,9,'2019-08-21 15:11:15',794.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 (14057,9,9,'2019-08-21 15:11:15',794.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 (14058,9,9,'2019-08-21 15:11:15',794.939000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14059,9,9,'2019-08-21 15:11:15',795.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 (14060,9,9,'2019-08-21 15:11:15',796.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 (14061,9,9,'2019-08-21 15:11:15',797.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 (14062,9,9,'2019-08-21 15:11:15',797.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 (14063,9,9,'2019-08-21 15:11:15',797.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 (14064,9,9,'2019-08-21 15:11:15',798.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 (14065,9,9,'2019-08-21 15:11:15',798.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 (14066,9,9,'2019-08-21 15:11:15',799.400000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14067,9,9,'2019-08-21 15:11:15',800.183000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14068,9,9,'2019-08-21 15:11:15',801.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 (14069,9,9,'2019-08-21 15:11:15',801.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 (14070,9,9,'2019-08-21 15:11:15',802.764000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14071,9,9,'2019-08-21 15:11:15',803.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 (14072,9,9,'2019-08-21 15:11:15',803.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 (14073,9,9,'2019-08-21 15:11:15',803.974000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14074,9,9,'2019-08-21 15:11:15',804.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 (14075,9,9,'2019-08-21 15:11:15',805.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 (14076,9,9,'2019-08-21 15:11:15',805.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 (14077,9,9,'2019-08-21 15:11:15',806.176000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14078,9,9,'2019-08-21 15:11:15',806.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 (14079,9,9,'2019-08-21 15:11:15',807.791000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14080,9,9,'2019-08-21 15:11:15',808.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 (14081,9,9,'2019-08-21 15:11:15',808.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 (14082,9,9,'2019-08-21 15:11:15',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 (14083,9,9,'2019-08-21 15:11:15',810.488000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14084,9,9,'2019-08-21 15:11:15',811.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 (14085,9,9,'2019-08-21 15:11:15',811.767000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14086,9,9,'2019-08-21 15:11:15',812.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 (14087,9,9,'2019-08-21 15:11:15',812.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 (14088,9,9,'2019-08-21 15:11:15',813.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 (14089,9,9,'2019-08-21 15:11:15',813.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 (14090,9,9,'2019-08-21 15:11:15',814.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 (14091,9,9,'2019-08-21 15:11:15',815.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 (14092,9,9,'2019-08-21 15:11:15',816.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 (14093,9,9,'2019-08-21 15:11:15',816.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 (14094,9,9,'2019-08-21 15:11:15',817.397000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14095,9,9,'2019-08-21 15:11:15',818.413000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14096,9,9,'2019-08-21 15:11:15',818.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 (14097,9,9,'2019-08-21 15:11:15',819.212000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14098,9,9,'2019-08-21 15:11:15',820.161000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14099,9,9,'2019-08-21 15:11:15',821.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 (14100,9,9,'2019-08-21 15:11:15',821.926000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14101,9,9,'2019-08-21 15:11:15',822.315000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14102,9,9,'2019-08-21 15:11:15',822.791000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14103,9,9,'2019-08-21 15:11:15',823.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 (14104,9,9,'2019-08-21 15:11:15',823.674000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14105,9,9,'2019-08-21 15:11:15',824.606000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14106,9,9,'2019-08-21 15:11:15',825.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 (14107,9,9,'2019-08-21 15:11:15',826.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 (14108,9,9,'2019-08-21 15:11:15',827.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 (14109,9,9,'2019-08-21 15:11:15',828.252000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14110,9,9,'2019-08-21 15:11:15',829.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 (14111,9,9,'2019-08-21 15:11:15',829.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 (14112,9,9,'2019-08-21 15:11:15',830.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 (14113,9,9,'2019-08-21 15:11:15',830.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 (14114,9,9,'2019-08-21 15:11:15',831.259000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14115,9,9,'2019-08-21 15:11:15',831.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 (14116,9,9,'2019-08-21 15:11:15',832.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 (14117,9,9,'2019-08-21 15:11:15',833.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 (14118,9,9,'2019-08-21 15:11:15',833.944000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14119,9,9,'2019-08-21 15:11:15',834.512000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14120,9,9,'2019-08-21 15:11:15',835.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 (14121,9,9,'2019-08-21 15:11:15',835.761000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14122,9,9,'2019-08-21 15:11:15',836.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 (14123,9,9,'2019-08-21 15:11:15',837.060000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14124,9,9,'2019-08-21 15:11:15',837.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 (14125,9,9,'2019-08-21 15:11:15',838.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 (14126,9,9,'2019-08-21 15:11:15',838.961000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14127,9,9,'2019-08-21 15:11:15',839.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 (14128,9,9,'2019-08-21 15:11:15',840.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 (14129,9,9,'2019-08-21 15:11:15',840.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 (14130,9,9,'2019-08-21 15:11:15',841.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 (14131,9,9,'2019-08-21 15:11:15',842.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 (14132,9,9,'2019-08-21 15:11:15',843.353000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14133,9,9,'2019-08-21 15:11:15',844.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 (14134,9,9,'2019-08-21 15:11:15',844.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 (14135,9,9,'2019-08-21 15:11:15',845.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 (14136,9,9,'2019-08-21 15:11:15',845.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 (14137,9,9,'2019-08-21 15:11:15',846.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 (14138,9,9,'2019-08-21 15:11:15',846.981000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14139,9,9,'2019-08-21 15:11:15',847.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 (14140,9,9,'2019-08-21 15:11:15',848.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 (14141,9,9,'2019-08-21 15:11:15',849.197000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14142,9,9,'2019-08-21 15:11:15',849.529000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14143,9,9,'2019-08-21 15:11:15',849.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 (14144,9,9,'2019-08-21 15:11:15',850.312000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14145,9,9,'2019-08-21 15:11:15',851.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 (14146,9,9,'2019-08-21 15:11:15',851.977000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14147,9,9,'2019-08-21 15:11:15',852.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 (14148,9,9,'2019-08-21 15:11:15',853.607000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14149,9,9,'2019-08-21 15:11:15',854.424000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14150,9,9,'2019-08-21 15:11:15',855.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 (14151,9,9,'2019-08-21 15:11:15',855.339000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14152,9,9,'2019-08-21 15:11:15',856.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 (14153,9,9,'2019-08-21 15:11:15',856.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 (14154,9,9,'2019-08-21 15:11:15',857.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 (14155,9,9,'2019-08-21 15:11:15',858.069000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14156,9,9,'2019-08-21 15:11:15',858.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 (14157,9,9,'2019-08-21 15:11:15',859.052000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14158,9,9,'2019-08-21 15:11:15',859.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 (14159,9,9,'2019-08-21 15:11:15',860.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 (14160,9,9,'2019-08-21 15:11:15',861.582000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14161,9,9,'2019-08-21 15:11:15',862.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 (14162,9,9,'2019-08-21 15:11:15',862.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 (14163,9,9,'2019-08-21 15:11:15',863.264000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14164,9,9,'2019-08-21 15:11:15',863.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 (14165,9,9,'2019-08-21 15:11:15',864.279000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14166,9,9,'2019-08-21 15:11:15',864.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 (14167,9,9,'2019-08-21 15:11:15',865.179000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14168,9,9,'2019-08-21 15:11:15',866.178000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14169,9,9,'2019-08-21 15:11:15',867.176000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14170,9,9,'2019-08-21 15:11:15',868.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 (14171,9,9,'2019-08-21 15:11:15',868.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 (14172,9,9,'2019-08-21 15:11:15',869.657000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14173,9,9,'2019-08-21 15:11:15',870.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 (14174,9,9,'2019-08-21 15:11:15',870.971000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14175,9,9,'2019-08-21 15:11:15',871.372000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14176,9,9,'2019-08-21 15:11:15',872.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 (14177,9,9,'2019-08-21 15:11:15',872.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 (14178,9,9,'2019-08-21 15:11:15',873.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 (14179,9,9,'2019-08-21 15:11:15',874.119000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14180,9,9,'2019-08-21 15:11:15',874.483000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14181,9,9,'2019-08-21 15:11:15',874.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 (14182,9,9,'2019-08-21 15:11:15',875.700000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14183,9,9,'2019-08-21 15:11:15',876.683000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14184,9,9,'2019-08-21 15:11:15',877.515000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14185,9,9,'2019-08-21 15:11:15',878.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 (14186,9,9,'2019-08-21 15:11:15',878.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 (14187,9,9,'2019-08-21 15:11:15',879.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 (14188,9,9,'2019-08-21 15:11:15',879.672000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14189,9,9,'2019-08-21 15:11:15',879.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 (14190,9,9,'2019-08-21 15:11:15',880.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 (14191,9,9,'2019-08-21 15:11:15',881.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 (14192,9,9,'2019-08-21 15:11:15',882.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 (14193,9,9,'2019-08-21 15:11:15',883.347000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14194,9,9,'2019-08-21 15:11:15',883.642000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14195,9,9,'2019-08-21 15:11:15',884.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 (14196,9,9,'2019-08-21 15:11:15',884.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 (14197,9,9,'2019-08-21 15:11:15',885.323000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14198,9,9,'2019-08-21 15:11:15',886.105000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14199,9,9,'2019-08-21 15:11:15',887.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 (14200,9,9,'2019-08-21 15:11:15',887.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 (14201,9,9,'2019-08-21 15:11:15',887.937000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14202,9,9,'2019-08-21 15:11:15',888.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 (14203,9,9,'2019-08-21 15:11:15',900.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 (14204,9,9,'2019-08-21 15:11:15',925.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 (14205,9,9,'2019-08-21 15:11:15',926.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 (14206,9,9,'2019-08-21 15:11:15',927.176000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14207,9,9,'2019-08-21 15:11:15',928.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 (14208,9,9,'2019-08-21 15:11:15',929.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 (14209,9,9,'2019-08-21 15:11:15',929.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 (14210,9,9,'2019-08-21 15:11:15',929.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 (14211,9,9,'2019-08-21 15:11:15',930.010000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14212,9,9,'2019-08-21 15:11:15',930.639000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14213,9,9,'2019-08-21 15:11:15',931.538000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14214,9,9,'2019-08-21 15:11:15',931.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 (14215,9,9,'2019-08-21 15:11:15',932.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 (14216,9,9,'2019-08-21 15:11:15',933.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 (14217,9,9,'2019-08-21 15:11:15',934.252000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14218,9,9,'2019-08-21 15:11:15',934.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 (14219,9,9,'2019-08-21 15:11:15',935.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 (14220,9,9,'2019-08-21 15:11:15',936.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 (14221,9,9,'2019-08-21 15:11:15',936.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 (14222,9,9,'2019-08-21 15:11:15',937.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 (14223,9,9,'2019-08-21 15:11:15',938.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 (14224,9,9,'2019-08-21 15:11:15',939.165000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14225,9,9,'2019-08-21 15:11:15',939.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 (14226,9,9,'2019-08-21 15:11:15',940.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 (14227,9,9,'2019-08-21 15:11:15',940.694000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14228,9,9,'2019-08-21 15:11:15',941.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 (14229,9,9,'2019-08-21 15:11:15',942.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 (14230,9,9,'2019-08-21 15:11:15',942.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 (14231,9,9,'2019-08-21 15:11:15',943.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 (14232,9,9,'2019-08-21 15:11:15',944.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 (14233,9,9,'2019-08-21 15:11:15',944.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 (14234,9,9,'2019-08-21 15:11:15',945.173000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14235,9,9,'2019-08-21 15:11:15',945.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 (14236,9,9,'2019-08-21 15:11:15',946.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 (14237,9,9,'2019-08-21 15:11:15',947.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 (14238,9,9,'2019-08-21 15:11:15',947.870000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14239,9,9,'2019-08-21 15:11:15',948.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 (14240,9,9,'2019-08-21 15:11:15',949.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 (14241,9,9,'2019-08-21 15:11:15',949.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 (14242,9,9,'2019-08-21 15:11:15',950.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 (14243,9,9,'2019-08-21 15:11:15',951.416000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14244,9,9,'2019-08-21 15:11:15',952.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 (14245,9,9,'2019-08-21 15:11:15',953.114000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14246,9,9,'2019-08-21 15:11:15',954.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 (14247,9,9,'2019-08-21 15:11:15',954.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 (14248,9,9,'2019-08-21 15:11:15',954.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 (14249,9,9,'2019-08-21 15:11:15',955.695000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14250,9,9,'2019-08-21 15:11:15',956.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 (14251,9,9,'2019-08-21 15:11:15',957.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 (14252,9,9,'2019-08-21 15:11:15',957.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 (14253,9,9,'2019-08-21 15:11:15',958.259000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14254,9,9,'2019-08-21 15:11:15',958.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 (14255,9,9,'2019-08-21 15:11:15',959.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 (14256,9,9,'2019-08-21 15:11:15',960.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 (14257,9,9,'2019-08-21 15:11:15',960.855000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14258,9,9,'2019-08-21 15:11:15',961.639000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14259,9,9,'2019-08-21 15:11:15',962.130000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14260,9,9,'2019-08-21 15:11:15',962.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 (14261,9,9,'2019-08-21 15:11:15',963.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 (14262,9,9,'2019-08-21 15:11:15',963.644000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14263,9,9,'2019-08-21 15:11:15',964.036000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14264,9,9,'2019-08-21 15:11:15',964.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 (14265,9,9,'2019-08-21 15:11:15',964.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 (14266,9,9,'2019-08-21 15:11:15',965.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 (14267,9,9,'2019-08-21 15:11:15',966.649000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14268,9,9,'2019-08-21 15:11:15',967.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 (14269,9,9,'2019-08-21 15:11:15',968.531000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14270,9,9,'2019-08-21 15:11:15',968.994000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14271,9,9,'2019-08-21 15:11:15',969.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 (14272,9,9,'2019-08-21 15:11:15',970.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 (14273,9,9,'2019-08-21 15:11:15',971.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 (14274,9,9,'2019-08-21 15:11:15',971.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 (14275,9,9,'2019-08-21 15:11:15',972.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 (14276,9,9,'2019-08-21 15:11:15',973.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 (14277,9,9,'2019-08-21 15:11:15',973.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 (14278,9,9,'2019-08-21 15:11:15',973.975000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14279,9,9,'2019-08-21 15:11:15',974.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 (14280,9,9,'2019-08-21 15:11:15',975.890000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14281,9,9,'2019-08-21 15:11:15',976.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 (14282,9,9,'2019-08-21 15:11:15',977.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 (14283,9,9,'2019-08-21 15:11:15',977.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 (14284,9,9,'2019-08-21 15:11:15',978.604000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14285,9,9,'2019-08-21 15:11:15',978.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 (14286,9,9,'2019-08-21 15:11:15',979.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 (14287,9,9,'2019-08-21 15:11:15',980.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 (14288,9,9,'2019-08-21 15:11:15',981.101000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14289,9,9,'2019-08-21 15:11:15',982.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 (14290,9,9,'2019-08-21 15:11:15',982.948000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14291,9,9,'2019-08-21 15:11:15',983.247000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14292,9,9,'2019-08-21 15:11:15',983.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 (14293,9,9,'2019-08-21 15:11:15',984.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 (14294,9,9,'2019-08-21 15:11:15',985.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 (14295,9,9,'2019-08-21 15:11:15',986.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 (14296,9,9,'2019-08-21 15:11:15',986.790000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14297,9,9,'2019-08-21 15:11:15',987.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 (14298,9,9,'2019-08-21 15:11:15',987.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 (14299,9,9,'2019-08-21 15:11:15',988.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 (14300,9,9,'2019-08-21 15:11:15',989.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 (14301,9,9,'2019-08-21 15:11:15',990.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 (14302,9,9,'2019-08-21 15:11:15',990.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 (14303,9,9,'2019-08-21 15:11:15',991.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 (14304,9,9,'2019-08-21 15:11:15',991.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 (14305,9,9,'2019-08-21 15:11:15',992.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 (14306,9,9,'2019-08-21 15:11:15',992.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 (14307,9,9,'2019-08-21 15:11:15',993.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 (14308,9,9,'2019-08-21 15:11:15',994.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 (14309,9,9,'2019-08-21 15:11:15',995.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 (14310,9,9,'2019-08-21 15:11:15',996.417000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14311,9,9,'2019-08-21 15:11:15',997.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 (14312,9,9,'2019-08-21 15:11:15',998.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 (14313,9,9,'2019-08-21 15:11:15',998.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 (14314,9,9,'2019-08-21 15:11:15',999.064000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14315,9,9,'2019-08-21 15:11:15',999.357000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14316,9,9,'2019-08-21 15:11:15',1000.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 (14317,9,9,'2019-08-21 15:11:15',1000.796000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14318,9,9,'2019-08-21 15:11:15',1001.795000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14319,9,9,'2019-08-21 15:11:15',1002.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 (14320,9,9,'2019-08-21 15:11:15',1002.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 (14321,9,9,'2019-08-21 15:11:15',1003.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 (14322,9,9,'2019-08-21 15:11:15',1003.860000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14323,9,9,'2019-08-21 15:11:15',1004.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 (14324,9,9,'2019-08-21 15:11:15',1005.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 (14325,9,9,'2019-08-21 15:11:15',1006.173000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14326,9,9,'2019-08-21 15:11:15',1007.155000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14327,9,9,'2019-08-21 15:11:15',1007.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 (14328,9,9,'2019-08-21 15:11:15',1007.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 (14329,9,9,'2019-08-21 15:11:15',1008.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 (14330,9,9,'2019-08-21 15:11:15',1008.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 (14331,9,9,'2019-08-21 15:11:15',1009.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 (14332,9,9,'2019-08-21 15:11:15',1010.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 (14333,9,9,'2019-08-21 15:11:15',1011.584000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14334,9,9,'2019-08-21 15:11:15',1012.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 (14335,9,9,'2019-08-21 15:11:15',1012.350000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14336,9,9,'2019-08-21 15:11:15',1013.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 (14337,9,9,'2019-08-21 15:11:15',1013.470000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14338,9,9,'2019-08-21 15:11:15',1013.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 (14339,9,9,'2019-08-21 15:11:15',1014.964000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14340,9,9,'2019-08-21 15:11:15',1015.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 (14341,9,9,'2019-08-21 15:11:15',1016.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 (14342,9,9,'2019-08-21 15:11:15',1017.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 (14343,9,9,'2019-08-21 15:11:15',1018.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 (14344,9,9,'2019-08-21 15:11:15',1018.779000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14345,9,9,'2019-08-21 15:11:15',1019.309000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14346,9,9,'2019-08-21 15:11:15',1020.108000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14347,9,9,'2019-08-21 15:11:15',1020.425000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14348,9,9,'2019-08-21 15:11:15',1021.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 (14349,9,9,'2019-08-21 15:11:15',1021.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 (14350,9,9,'2019-08-21 15:11:15',1021.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 (14351,9,9,'2019-08-21 15:11:15',1022.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 (14352,9,9,'2019-08-21 15:11:15',1023.504000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14353,9,9,'2019-08-21 15:11:15',1024.304000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14354,9,9,'2019-08-21 15:11:15',1024.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 (14355,9,9,'2019-08-21 15:11:15',1025.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 (14356,9,9,'2019-08-21 15:11:15',1026.102000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14357,9,9,'2019-08-21 15:11:15',1026.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 (14358,9,9,'2019-08-21 15:11:15',1027.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 (14359,9,9,'2019-08-21 15:11:15',1028.615000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14360,9,9,'2019-08-21 15:11:15',1028.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 (14361,9,9,'2019-08-21 15:11:15',1029.431000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14362,9,9,'2019-08-21 15:11:15',1029.772000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14363,9,9,'2019-08-21 15:11:15',1030.430000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14364,9,9,'2019-08-21 15:11:15',1031.362000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14365,9,9,'2019-08-21 15:11:15',1031.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 (14366,9,9,'2019-08-21 15:11:15',1032.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 (14367,9,9,'2019-08-21 15:11:15',1032.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 (14368,9,9,'2019-08-21 15:11:15',1033.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 (14369,9,9,'2019-08-21 15:11:15',1034.093000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14370,9,9,'2019-08-21 15:11:15',1035.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 (14371,9,9,'2019-08-21 15:11:15',1035.990000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14372,9,9,'2019-08-21 15:11:15',1036.856000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14373,9,9,'2019-08-21 15:11:15',1037.655000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14374,9,9,'2019-08-21 15:11:15',1038.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 (14375,9,9,'2019-08-21 15:11:15',1039.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 (14376,9,9,'2019-08-21 15:11:15',1039.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 (14377,9,9,'2019-08-21 15:11:15',1040.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 (14378,9,9,'2019-08-21 15:11:15',1041.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 (14379,9,9,'2019-08-21 15:11:15',1041.653000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14380,9,9,'2019-08-21 15:11:15',1042.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 (14381,9,9,'2019-08-21 15:11:15',1043.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 (14382,9,9,'2019-08-21 15:11:15',1043.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 (14383,9,9,'2019-08-21 15:11:15',1043.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 (14384,9,9,'2019-08-21 15:11:15',1044.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 (14385,9,9,'2019-08-21 15:11:15',1045.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 (14386,9,9,'2019-08-21 15:11:15',1046.085000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14387,9,9,'2019-08-21 15:11:15',1046.513000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14388,9,9,'2019-08-21 15:11:15',1047.444000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14389,9,9,'2019-08-21 15:11:15',1048.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 (14390,9,9,'2019-08-21 15:11:15',1048.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 (14391,9,9,'2019-08-21 15:11:15',1049.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 (14392,9,9,'2019-08-21 15:11:15',1049.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 (14393,9,9,'2019-08-21 15:11:15',1050.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 (14394,9,9,'2019-08-21 15:11:15',1051.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 (14395,9,9,'2019-08-21 15:11:15',1051.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 (14396,9,9,'2019-08-21 15:11:15',1052.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 (14397,9,9,'2019-08-21 15:11:15',1053.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 (14398,9,9,'2019-08-21 15:11:15',1053.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 (14399,9,9,'2019-08-21 15:11:15',1053.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 (14400,9,9,'2019-08-21 15:11:15',1054.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 (14401,9,9,'2019-08-21 15:11:15',1055.735000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14402,9,9,'2019-08-21 15:11:15',1056.535000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14403,9,9,'2019-08-21 15:11:15',1057.317000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14404,9,9,'2019-08-21 15:11:15',1057.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 (14405,9,9,'2019-08-21 15:11:15',1058.149000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14406,9,9,'2019-08-21 15:11:15',1059.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 (14407,9,9,'2019-08-21 15:11:15',1059.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 (14408,9,9,'2019-08-21 15:11:15',1059.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 (14409,9,9,'2019-08-21 15:11:15',1060.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 (14410,9,9,'2019-08-21 15:11:15',1061.796000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14411,9,9,'2019-08-21 15:11:15',1062.795000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14412,9,9,'2019-08-21 15:11:15',1063.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 (14413,9,9,'2019-08-21 15:11:15',1063.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 (14414,9,9,'2019-08-21 15:11:15',1064.692000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14415,9,9,'2019-08-21 15:11:15',1065.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 (14416,9,9,'2019-08-21 15:11:15',1066.457000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14417,9,9,'2019-08-21 15:11:15',1066.798000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14418,9,9,'2019-08-21 15:11:15',1067.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 (14419,9,9,'2019-08-21 15:11:15',1067.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 (14420,9,9,'2019-08-21 15:11:15',1068.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 (14421,9,9,'2019-08-21 15:11:15',1068.821000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14422,9,9,'2019-08-21 15:11:15',1069.190000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14423,9,9,'2019-08-21 15:11:15',1069.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 (14424,9,9,'2019-08-21 15:11:15',1070.603000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14425,9,9,'2019-08-21 15:11:15',1071.452000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14426,9,9,'2019-08-21 15:11:15',1071.744000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14427,9,9,'2019-08-21 15:11:15',1072.400000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14428,9,9,'2019-08-21 15:11:15',1073.383000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14429,9,9,'2019-08-21 15:11:15',1074.249000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14430,9,9,'2019-08-21 15:11:15',1074.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 (14431,9,9,'2019-08-21 15:11:15',1075.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 (14432,9,9,'2019-08-21 15:11:15',1076.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 (14433,9,9,'2019-08-21 15:11:15',1076.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 (14434,9,9,'2019-08-21 15:11:15',1077.186000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14435,9,9,'2019-08-21 15:11:15',1077.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 (14436,9,9,'2019-08-21 15:11:15',1078.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 (14437,9,9,'2019-08-21 15:11:15',1079.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 (14438,9,9,'2019-08-21 15:11:15',1080.309000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14439,9,9,'2019-08-21 15:11:15',1081.191000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14440,9,9,'2019-08-21 15:11:15',1081.957000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14441,9,9,'2019-08-21 15:11:15',1082.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 (14442,9,9,'2019-08-21 15:11:15',1082.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 (14443,9,9,'2019-08-21 15:11:15',1083.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 (14444,9,9,'2019-08-21 15:11:15',1084.222000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14445,9,9,'2019-08-21 15:11:15',1084.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 (14446,9,9,'2019-08-21 15:11:15',1084.998000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14447,9,9,'2019-08-21 15:11:15',1085.520000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14448,9,9,'2019-08-21 15:11:15',1086.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 (14449,9,9,'2019-08-21 15:11:15',1086.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 (14450,9,9,'2019-08-21 15:11:15',1087.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 (14451,9,9,'2019-08-21 15:11:15',1087.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 (14452,9,9,'2019-08-21 15:11:15',1088.866000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14453,9,9,'2019-08-21 15:11:15',1089.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 (14454,9,9,'2019-08-21 15:11:15',1090.548000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14455,9,9,'2019-08-21 15:11:15',1091.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 (14456,9,9,'2019-08-21 15:11:15',1092.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 (14457,9,9,'2019-08-21 15:11:15',1092.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 (14458,9,9,'2019-08-21 15:11:15',1093.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 (14459,9,9,'2019-08-21 15:11:15',1094.127000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14460,9,9,'2019-08-21 15:11:15',1094.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 (14461,9,9,'2019-08-21 15:11:15',1094.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 (14462,9,9,'2019-08-21 15:11:15',1095.892000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14463,9,9,'2019-08-21 15:11:15',1096.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 (14464,9,9,'2019-08-21 15:11:15',1096.791000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14465,9,9,'2019-08-21 15:11:15',1097.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 (14466,9,9,'2019-08-21 15:11:15',1098.339000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14467,9,9,'2019-08-21 15:11:15',1098.696000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14468,9,9,'2019-08-21 15:11:15',1099.288000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14469,9,9,'2019-08-21 15:11:15',1100.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 (14470,9,9,'2019-08-21 15:11:15',1101.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 (14471,9,9,'2019-08-21 15:11:15',1101.818000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14472,9,9,'2019-08-21 15:11:15',1102.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 (14473,9,9,'2019-08-21 15:11:15',1103.583000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14474,9,9,'2019-08-21 15:11:15',1103.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 (14475,9,9,'2019-08-21 15:11:15',1104.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 (14476,9,9,'2019-08-21 15:11:15',1104.813000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14477,9,9,'2019-08-21 15:11:15',1105.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 (14478,9,9,'2019-08-21 15:11:15',1106.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 (14479,9,9,'2019-08-21 15:11:15',1107.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 (14480,9,9,'2019-08-21 15:11:15',1107.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 (14481,9,9,'2019-08-21 15:11:15',1108.216000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14482,9,9,'2019-08-21 15:11:15',1108.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 (14483,9,9,'2019-08-21 15:11:15',1109.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 (14484,9,9,'2019-08-21 15:11:15',1109.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 (14485,9,9,'2019-08-21 15:11:15',1110.376000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14486,9,9,'2019-08-21 15:11:15',1111.191000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14487,9,9,'2019-08-21 15:11:15',1112.041000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14488,9,9,'2019-08-21 15:11:15',1112.395000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14489,9,9,'2019-08-21 15:11:15',1112.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 (14490,9,9,'2019-08-21 15:11:15',1113.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 (14491,9,9,'2019-08-21 15:11:15',1114.921000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14492,9,9,'2019-08-21 15:11:15',1115.241000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14493,9,9,'2019-08-21 15:11:15',1115.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 (14494,9,9,'2019-08-21 15:11:15',1116.853000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14495,9,9,'2019-08-21 15:11:15',1117.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 (14496,9,9,'2019-08-21 15:11:15',1118.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 (14497,9,9,'2019-08-21 15:11:15',1119.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 (14498,9,9,'2019-08-21 15:11:15',1119.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 (14499,9,9,'2019-08-21 15:11:15',1120.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 (14500,9,9,'2019-08-21 15:11:15',1120.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 (14501,9,9,'2019-08-21 15:11:15',1121.480000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14502,9,9,'2019-08-21 15:11:15',1122.246000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14503,9,9,'2019-08-21 15:11:15',1123.162000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14504,9,9,'2019-08-21 15:11:15',1123.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 (14505,9,9,'2019-08-21 15:11:15',1124.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 (14506,9,9,'2019-08-21 15:11:15',1124.910000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14507,9,9,'2019-08-21 15:11:15',1125.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 (14508,9,9,'2019-08-21 15:11:15',1126.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 (14509,9,9,'2019-08-21 15:11:15',1126.758000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14510,9,9,'2019-08-21 15:11:15',1127.524000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14511,9,9,'2019-08-21 15:11:15',1127.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 (14512,9,9,'2019-08-21 15:11:15',1128.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 (14513,9,9,'2019-08-21 15:11:15',1129.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 (14514,9,9,'2019-08-21 15:11:15',1129.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 (14515,9,9,'2019-08-21 15:11:15',1130.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 (14516,9,9,'2019-08-21 15:11:15',1130.920000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14517,9,9,'2019-08-21 15:11:15',1131.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 (14518,9,9,'2019-08-21 15:11:15',1132.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 (14519,9,9,'2019-08-21 15:11:15',1132.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 (14520,9,9,'2019-08-21 15:11:15',1133.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 (14521,9,9,'2019-08-21 15:11:15',1134.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 (14522,9,9,'2019-08-21 15:11:15',1134.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 (14523,9,9,'2019-08-21 15:11:15',1135.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 (14524,9,9,'2019-08-21 15:11:15',1135.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 (14525,9,9,'2019-08-21 15:11:15',1136.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 (14526,9,9,'2019-08-21 15:11:15',1137.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 (14527,9,9,'2019-08-21 15:11:15',1138.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 (14528,9,9,'2019-08-21 15:11:15',1138.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 (14529,9,9,'2019-08-21 15:11:15',1139.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 (14530,9,9,'2019-08-21 15:11:15',1140.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 (14531,9,9,'2019-08-21 15:11:15',1141.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 (14532,9,9,'2019-08-21 15:11:15',1141.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 (14533,9,9,'2019-08-21 15:11:15',1142.041000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14534,9,9,'2019-08-21 15:11:15',1142.404000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14535,9,9,'2019-08-21 15:11:15',1142.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 (14536,9,9,'2019-08-21 15:11:15',1143.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 (14537,9,9,'2019-08-21 15:11:15',1144.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 (14538,9,9,'2019-08-21 15:11:15',1145.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 (14539,9,9,'2019-08-21 15:11:15',1145.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 (14540,9,9,'2019-08-21 15:11:15',1146.287000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14541,9,9,'2019-08-21 15:11:15',1147.252000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14542,9,9,'2019-08-21 15:11:15',1147.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 (14543,9,9,'2019-08-21 15:11:15',1148.118000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14544,9,9,'2019-08-21 15:11:15',1149.084000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14545,9,9,'2019-08-21 15:11:15',1149.390000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14546,9,9,'2019-08-21 15:11:15',1149.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 (14547,9,9,'2019-08-21 15:11:15',1150.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 (14548,9,9,'2019-08-21 15:11:15',1151.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 (14549,9,9,'2019-08-21 15:11:15',1152.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 (14550,9,9,'2019-08-21 15:11:15',1153.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 (14551,9,9,'2019-08-21 15:11:15',1154.295000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14552,9,9,'2019-08-21 15:11:15',1155.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 (14553,9,9,'2019-08-21 15:11:15',1156.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 (14554,9,9,'2019-08-21 15:11:15',1156.587000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14555,9,9,'2019-08-21 15:11:15',1157.241000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14556,9,9,'2019-08-21 15:11:15',1157.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 (14557,9,9,'2019-08-21 15:11:15',1158.091000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14558,9,9,'2019-08-21 15:11:15',1158.484000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14559,9,9,'2019-08-21 15:11:15',1159.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 (14560,9,9,'2019-08-21 15:11:15',1160.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 (14561,9,9,'2019-08-21 15:11:15',1160.888000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14562,9,9,'2019-08-21 15:11:15',1161.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 (14563,9,9,'2019-08-21 15:11:15',1161.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 (14564,9,9,'2019-08-21 15:11:15',1162.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 (14565,9,9,'2019-08-21 15:11:15',1163.468000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14566,9,9,'2019-08-21 15:11:15',1164.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 (14567,9,9,'2019-08-21 15:11:15',1165.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 (14568,9,9,'2019-08-21 15:11:15',1165.702000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14569,9,9,'2019-08-21 15:11:15',1166.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 (14570,9,9,'2019-08-21 15:11:15',1166.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 (14571,9,9,'2019-08-21 15:11:15',1167.197000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14572,9,9,'2019-08-21 15:11:15',1168.180000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14573,9,9,'2019-08-21 15:11:15',1169.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 (14574,9,9,'2019-08-21 15:11:15',1169.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 (14575,9,9,'2019-08-21 15:11:15',1170.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 (14576,9,9,'2019-08-21 15:11:15',1171.692000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14577,9,9,'2019-08-21 15:11:15',1172.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 (14578,9,9,'2019-08-21 15:11:15',1172.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 (14579,9,9,'2019-08-21 15:11:15',1172.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 (14580,9,9,'2019-08-21 15:11:15',1173.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 (14581,9,9,'2019-08-21 15:11:15',1174.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 (14582,9,9,'2019-08-21 15:11:15',1175.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 (14583,9,9,'2019-08-21 15:11:15',1176.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 (14584,9,9,'2019-08-21 15:11:15',1176.392000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14585,9,9,'2019-08-21 15:11:15',1176.970000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14586,9,9,'2019-08-21 15:11:15',1177.853000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14587,9,9,'2019-08-21 15:11:15',1178.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 (14588,9,9,'2019-08-21 15:11:15',1178.768000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14589,9,9,'2019-08-21 15:11:15',1179.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 (14590,9,9,'2019-08-21 15:11:15',1180.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 (14591,9,9,'2019-08-21 15:11:15',1180.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 (14592,9,9,'2019-08-21 15:11:15',1181.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 (14593,9,9,'2019-08-21 15:11:15',1181.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 (14594,9,9,'2019-08-21 15:11:15',1182.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 (14595,9,9,'2019-08-21 15:11:15',1183.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 (14596,9,9,'2019-08-21 15:11:15',1184.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 (14597,9,9,'2019-08-21 15:11:15',1184.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 (14598,9,9,'2019-08-21 15:11:15',1185.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 (14599,9,9,'2019-08-21 15:11:15',1186.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 (14600,9,9,'2019-08-21 15:11:15',1187.112000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14601,9,9,'2019-08-21 15:11:15',1187.575000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14602,9,9,'2019-08-21 15:11:15',1188.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 (14603,9,9,'2019-08-21 15:11:15',1188.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 (14604,9,9,'2019-08-21 15:11:15',1189.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 (14605,10,10,'2019-08-21 15:11:22',0.488000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14606,10,10,'2019-08-21 15:11:22',6.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 (14607,10,10,'2019-08-21 15:11:22',6.682000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14608,10,10,'2019-08-21 15:11:22',7.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 (14609,10,10,'2019-08-21 15:11:22',7.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 (14610,10,10,'2019-08-21 15:11:22',7.837000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14611,10,10,'2019-08-21 15:11:22',8.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 (14612,10,10,'2019-08-21 15:11:22',9.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 (14613,10,10,'2019-08-21 15:11:22',10.351000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14614,10,10,'2019-08-21 15:11:22',11.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 (14615,10,10,'2019-08-21 15:11:22',12.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 (14616,10,10,'2019-08-21 15:11:22',12.688000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14617,10,10,'2019-08-21 15:11:22',13.164000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14618,10,10,'2019-08-21 15:11:22',13.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 (14619,10,10,'2019-08-21 15:11:22',14.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 (14620,10,10,'2019-08-21 15:11:22',15.029000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14621,10,10,'2019-08-21 15:11:22',15.878000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14622,10,10,'2019-08-21 15:11:22',16.894000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14623,10,10,'2019-08-21 15:11:22',17.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 (14624,10,10,'2019-08-21 15:11:22',18.525000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14625,10,10,'2019-08-21 15:11:22',18.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 (14626,10,10,'2019-08-21 15:11:22',19.357000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14627,10,10,'2019-08-21 15:11:22',20.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 (14628,10,10,'2019-08-21 15:11:22',20.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 (14629,10,10,'2019-08-21 15:11:22',20.939000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14630,10,10,'2019-08-21 15:11:22',21.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 (14631,10,10,'2019-08-21 15:11:22',21.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 (14632,10,10,'2019-08-21 15:11:22',22.737000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14633,10,10,'2019-08-21 15:11:22',23.553000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14634,10,10,'2019-08-21 15:11:22',23.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 (14635,10,10,'2019-08-21 15:11:22',24.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 (14636,10,10,'2019-08-21 15:11:22',25.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 (14637,10,10,'2019-08-21 15:11:22',26.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 (14638,10,10,'2019-08-21 15:11:22',27.299000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14639,10,10,'2019-08-21 15:11:22',28.198000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14640,10,10,'2019-08-21 15:11:22',28.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 (14641,10,10,'2019-08-21 15:11:22',29.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 (14642,10,10,'2019-08-21 15:11:22',29.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 (14643,10,10,'2019-08-21 15:11:22',29.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 (14644,10,10,'2019-08-21 15:11:22',30.928000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14645,10,10,'2019-08-21 15:11:22',31.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 (14646,10,10,'2019-08-21 15:11:22',32.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 (14647,10,10,'2019-08-21 15:11:22',32.710000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14648,10,10,'2019-08-21 15:11:22',33.658000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14649,10,10,'2019-08-21 15:11:22',33.945000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14650,10,10,'2019-08-21 15:11:22',34.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 (14651,10,10,'2019-08-21 15:11:22',35.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 (14652,10,10,'2019-08-21 15:11:22',36.372000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14653,10,10,'2019-08-21 15:11:22',37.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 (14654,10,10,'2019-08-21 15:11:22',38.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 (14655,10,10,'2019-08-21 15:11:22',38.886000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14656,10,10,'2019-08-21 15:11:22',39.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 (14657,10,10,'2019-08-21 15:11:22',39.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 (14658,10,10,'2019-08-21 15:11:22',40.112000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14659,10,10,'2019-08-21 15:11:22',40.617000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14660,10,10,'2019-08-21 15:11:22',41.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 (14661,10,10,'2019-08-21 15:11:22',42.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 (14662,10,10,'2019-08-21 15:11:22',43.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 (14663,10,10,'2019-08-21 15:11:22',43.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 (14664,10,10,'2019-08-21 15:11:22',44.197000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14665,10,10,'2019-08-21 15:11:22',44.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 (14666,10,10,'2019-08-21 15:11:22',45.311000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14667,10,10,'2019-08-21 15:11:22',45.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 (14668,10,10,'2019-08-21 15:11:22',46.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 (14669,10,10,'2019-08-21 15:11:22',47.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 (14670,10,10,'2019-08-21 15:11:22',47.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 (14671,10,10,'2019-08-21 15:11:22',48.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 (14672,10,10,'2019-08-21 15:11:22',48.723000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14673,10,10,'2019-08-21 15:11:22',49.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 (14674,10,10,'2019-08-21 15:11:22',50.074000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14675,10,10,'2019-08-21 15:11:22',50.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 (14676,10,10,'2019-08-21 15:11:22',51.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 (14677,10,10,'2019-08-21 15:11:22',52.588000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14678,10,10,'2019-08-21 15:11:22',53.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 (14679,10,10,'2019-08-21 15:11:22',53.840000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14680,10,10,'2019-08-21 15:11:22',54.319000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14681,10,10,'2019-08-21 15:11:22',55.252000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14682,10,10,'2019-08-21 15:11:22',55.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 (14683,10,10,'2019-08-21 15:11:22',56.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 (14684,10,10,'2019-08-21 15:11:22',57.066000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14685,10,10,'2019-08-21 15:11:22',57.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 (14686,10,10,'2019-08-21 15:11:22',58.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 (14687,10,10,'2019-08-21 15:11:22',59.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 (14688,10,10,'2019-08-21 15:11:22',60.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 (14689,10,10,'2019-08-21 15:11:22',61.066000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14690,10,10,'2019-08-21 15:11:22',61.462000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14691,10,10,'2019-08-21 15:11:22',62.244000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14692,10,10,'2019-08-21 15:11:22',62.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 (14693,10,10,'2019-08-21 15:11:22',63.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 (14694,10,10,'2019-08-21 15:11:22',64.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 (14695,10,10,'2019-08-21 15:11:22',64.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 (14696,10,10,'2019-08-21 15:11:22',65.296000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14697,10,10,'2019-08-21 15:11:22',65.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 (14698,10,10,'2019-08-21 15:11:22',66.134000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14699,10,10,'2019-08-21 15:11:22',66.605000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14700,10,10,'2019-08-21 15:11:22',67.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 (14701,10,10,'2019-08-21 15:11:22',68.304000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14702,10,10,'2019-08-21 15:11:22',69.187000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14703,10,10,'2019-08-21 15:11:22',69.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 (14704,10,10,'2019-08-21 15:11:22',70.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 (14705,10,10,'2019-08-21 15:11:22',71.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 (14706,10,10,'2019-08-21 15:11:22',71.353000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14707,10,10,'2019-08-21 15:11:22',71.917000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14708,10,10,'2019-08-21 15:11:22',72.766000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14709,10,10,'2019-08-21 15:11:22',73.564000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14710,10,10,'2019-08-21 15:11:22',74.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 (14711,10,10,'2019-08-21 15:11:22',75.430000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14712,10,10,'2019-08-21 15:11:22',76.328000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14713,10,10,'2019-08-21 15:11:22',76.772000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14714,10,10,'2019-08-21 15:11:22',77.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 (14715,10,10,'2019-08-21 15:11:22',78.043000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14716,10,10,'2019-08-21 15:11:22',78.407000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14717,10,10,'2019-08-21 15:11:22',78.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 (14718,10,10,'2019-08-21 15:11:22',79.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 (14719,10,10,'2019-08-21 15:11:22',79.825000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14720,10,10,'2019-08-21 15:11:22',80.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 (14721,10,10,'2019-08-21 15:11:22',81.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 (14722,10,10,'2019-08-21 15:11:22',81.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 (14723,10,10,'2019-08-21 15:11:22',82.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 (14724,10,10,'2019-08-21 15:11:22',83.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 (14725,10,10,'2019-08-21 15:11:22',84.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 (14726,10,10,'2019-08-21 15:11:22',84.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 (14727,10,10,'2019-08-21 15:11:22',85.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 (14728,10,10,'2019-08-21 15:11:22',86.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 (14729,10,10,'2019-08-21 15:11:22',87.134000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14730,10,10,'2019-08-21 15:11:22',87.933000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14731,10,10,'2019-08-21 15:11:22',88.360000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14732,10,10,'2019-08-21 15:11:22',88.832000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14733,10,10,'2019-08-21 15:11:22',89.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 (14734,10,10,'2019-08-21 15:11:22',90.045000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14735,10,10,'2019-08-21 15:11:22',90.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 (14736,10,10,'2019-08-21 15:11:22',91.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 (14737,10,10,'2019-08-21 15:11:22',92.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 (14738,10,10,'2019-08-21 15:11:22',93.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 (14739,10,10,'2019-08-21 15:11:22',94.093000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14740,10,10,'2019-08-21 15:11:22',94.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 (14741,10,10,'2019-08-21 15:11:22',94.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 (14742,10,10,'2019-08-21 15:11:22',95.791000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14743,10,10,'2019-08-21 15:11:22',96.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 (14744,10,10,'2019-08-21 15:11:22',97.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 (14745,10,10,'2019-08-21 15:11:22',97.929000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14746,10,10,'2019-08-21 15:11:22',98.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 (14747,10,10,'2019-08-21 15:11:22',99.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 (14748,10,10,'2019-08-21 15:11:22',99.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 (14749,10,10,'2019-08-21 15:11:22',100.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 (14750,10,10,'2019-08-21 15:11:22',101.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 (14751,10,10,'2019-08-21 15:11:22',102.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 (14752,10,10,'2019-08-21 15:11:22',103.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 (14753,10,10,'2019-08-21 15:11:22',103.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 (14754,10,10,'2019-08-21 15:11:22',103.965000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14755,10,10,'2019-08-21 15:11:22',104.641000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14756,10,10,'2019-08-21 15:11:22',104.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 (14757,10,10,'2019-08-21 15:11:22',105.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 (14758,10,10,'2019-08-21 15:11:22',106.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 (14759,10,10,'2019-08-21 15:11:22',106.846000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14760,10,10,'2019-08-21 15:11:22',107.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 (14761,10,10,'2019-08-21 15:11:22',108.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 (14762,10,10,'2019-08-21 15:11:22',109.409000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14763,10,10,'2019-08-21 15:11:22',110.241000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14764,10,10,'2019-08-21 15:11:22',110.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 (14765,10,10,'2019-08-21 15:11:22',111.058000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14766,10,10,'2019-08-21 15:11:22',111.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 (14767,10,10,'2019-08-21 15:11:22',112.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 (14768,10,10,'2019-08-21 15:11:22',113.180000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14769,10,10,'2019-08-21 15:11:22',113.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 (14770,10,10,'2019-08-21 15:11:22',114.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 (14771,10,10,'2019-08-21 15:11:22',114.637000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14772,10,10,'2019-08-21 15:11:22',115.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 (14773,10,10,'2019-08-21 15:11:22',116.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 (14774,10,10,'2019-08-21 15:11:22',117.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 (14775,10,10,'2019-08-21 15:11:22',117.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 (14776,10,10,'2019-08-21 15:11:22',118.166000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14777,10,10,'2019-08-21 15:11:22',119.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 (14778,10,10,'2019-08-21 15:11:22',119.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 (14779,10,10,'2019-08-21 15:11:22',120.930000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14780,10,10,'2019-08-21 15:11:22',121.386000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14781,10,10,'2019-08-21 15:11:22',121.779000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14782,10,10,'2019-08-21 15:11:22',122.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 (14783,10,10,'2019-08-21 15:11:22',123.112000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14784,10,10,'2019-08-21 15:11:22',123.660000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14785,10,10,'2019-08-21 15:11:22',124.510000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14786,10,10,'2019-08-21 15:11:22',125.491000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14787,10,10,'2019-08-21 15:11:22',126.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 (14788,10,10,'2019-08-21 15:11:22',126.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 (14789,10,10,'2019-08-21 15:11:22',127.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 (14790,10,10,'2019-08-21 15:11:22',127.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 (14791,10,10,'2019-08-21 15:11:22',127.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 (14792,10,10,'2019-08-21 15:11:22',128.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 (14793,10,10,'2019-08-21 15:11:22',128.805000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14794,10,10,'2019-08-21 15:11:22',129.653000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14795,10,10,'2019-08-21 15:11:22',130.470000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14796,10,10,'2019-08-21 15:11:22',131.469000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14797,10,10,'2019-08-21 15:11:22',132.384000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14798,10,10,'2019-08-21 15:11:22',133.233000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14799,10,10,'2019-08-21 15:11:22',133.640000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14800,10,10,'2019-08-21 15:11:22',134.049000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14801,10,10,'2019-08-21 15:11:22',134.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 (14802,10,10,'2019-08-21 15:11:22',135.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 (14803,10,10,'2019-08-21 15:11:22',136.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 (14804,10,10,'2019-08-21 15:11:22',136.950000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14805,10,10,'2019-08-21 15:11:22',137.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 (14806,10,10,'2019-08-21 15:11:22',138.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 (14807,10,10,'2019-08-21 15:11:22',139.127000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14808,10,10,'2019-08-21 15:11:22',139.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 (14809,10,10,'2019-08-21 15:11:22',140.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 (14810,10,10,'2019-08-21 15:11:22',141.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 (14811,10,10,'2019-08-21 15:11:22',141.473000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14812,10,10,'2019-08-21 15:11:22',141.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 (14813,10,10,'2019-08-21 15:11:22',142.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 (14814,10,10,'2019-08-21 15:11:22',143.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 (14815,10,10,'2019-08-21 15:11:22',144.504000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14816,10,10,'2019-08-21 15:11:22',144.854000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14817,10,10,'2019-08-21 15:11:22',145.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 (14818,10,10,'2019-08-21 15:11:22',145.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 (14819,10,10,'2019-08-21 15:11:22',146.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 (14820,10,10,'2019-08-21 15:11:22',147.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 (14821,10,10,'2019-08-21 15:11:22',147.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 (14822,10,10,'2019-08-21 15:11:22',148.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 (14823,10,10,'2019-08-21 15:11:22',148.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 (14824,10,10,'2019-08-21 15:11:22',149.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 (14825,10,10,'2019-08-21 15:11:22',150.681000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14826,10,10,'2019-08-21 15:11:22',151.496000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14827,10,10,'2019-08-21 15:11:22',151.849000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14828,10,10,'2019-08-21 15:11:22',152.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 (14829,10,10,'2019-08-21 15:11:22',153.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 (14830,10,10,'2019-08-21 15:11:22',154.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 (14831,10,10,'2019-08-21 15:11:22',154.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 (14832,10,10,'2019-08-21 15:11:22',155.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 (14833,10,10,'2019-08-21 15:11:22',156.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 (14834,10,10,'2019-08-21 15:11:22',157.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 (14835,10,10,'2019-08-21 15:11:22',157.807000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14836,10,10,'2019-08-21 15:11:22',158.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 (14837,10,10,'2019-08-21 15:11:22',158.655000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14838,10,10,'2019-08-21 15:11:22',159.487000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14839,10,10,'2019-08-21 15:11:22',160.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 (14840,10,10,'2019-08-21 15:11:22',160.641000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14841,10,10,'2019-08-21 15:11:22',161.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 (14842,10,10,'2019-08-21 15:11:22',162.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 (14843,10,10,'2019-08-21 15:11:22',163.134000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14844,10,10,'2019-08-21 15:11:22',163.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 (14845,10,10,'2019-08-21 15:11:22',164.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 (14846,10,10,'2019-08-21 15:11:22',165.065000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14847,10,10,'2019-08-21 15:11:22',166.030000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14848,10,10,'2019-08-21 15:11:22',166.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 (14849,10,10,'2019-08-21 15:11:22',166.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 (14850,10,10,'2019-08-21 15:11:22',167.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 (14851,10,10,'2019-08-21 15:11:22',168.611000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14852,10,10,'2019-08-21 15:11:22',168.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 (14853,10,10,'2019-08-21 15:11:22',169.510000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14854,10,10,'2019-08-21 15:11:22',170.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 (14855,10,10,'2019-08-21 15:11:22',170.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 (14856,10,10,'2019-08-21 15:11:22',171.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 (14857,10,10,'2019-08-21 15:11:22',172.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 (14858,10,10,'2019-08-21 15:11:22',172.602000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14859,10,10,'2019-08-21 15:11:22',173.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 (14860,10,10,'2019-08-21 15:11:22',173.922000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14861,10,10,'2019-08-21 15:11:22',174.921000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14862,10,10,'2019-08-21 15:11:22',175.736000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14863,10,10,'2019-08-21 15:11:22',176.205000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14864,10,10,'2019-08-21 15:11:22',176.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 (14865,10,10,'2019-08-21 15:11:22',177.435000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14866,10,10,'2019-08-21 15:11:22',178.400000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14867,10,10,'2019-08-21 15:11:22',178.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 (14868,10,10,'2019-08-21 15:11:22',179.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 (14869,10,10,'2019-08-21 15:11:22',179.982000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14870,10,10,'2019-08-21 15:11:22',180.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 (14871,10,10,'2019-08-21 15:11:22',181.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 (14872,10,10,'2019-08-21 15:11:22',182.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 (14873,10,10,'2019-08-21 15:11:22',183.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 (14874,10,10,'2019-08-21 15:11:22',183.895000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14875,10,10,'2019-08-21 15:11:22',184.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 (14876,10,10,'2019-08-21 15:11:22',184.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 (14877,10,10,'2019-08-21 15:11:22',185.659000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14878,10,10,'2019-08-21 15:11:22',186.642000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14879,10,10,'2019-08-21 15:11:22',187.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 (14880,10,10,'2019-08-21 15:11:22',187.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 (14881,10,10,'2019-08-21 15:11:22',188.572000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14882,10,10,'2019-08-21 15:11:22',189.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 (14883,10,10,'2019-08-21 15:11:22',190.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 (14884,10,10,'2019-08-21 15:11:22',190.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 (14885,10,10,'2019-08-21 15:11:22',191.319000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14886,10,10,'2019-08-21 15:11:22',191.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 (14887,10,10,'2019-08-21 15:11:22',192.252000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14888,10,10,'2019-08-21 15:11:22',193.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 (14889,10,10,'2019-08-21 15:11:22',194.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 (14890,10,10,'2019-08-21 15:11:22',194.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 (14891,10,10,'2019-08-21 15:11:22',195.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 (14892,10,10,'2019-08-21 15:11:22',195.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 (14893,10,10,'2019-08-21 15:11:22',196.514000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14894,10,10,'2019-08-21 15:11:22',197.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 (14895,10,10,'2019-08-21 15:11:22',197.795000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14896,10,10,'2019-08-21 15:11:22',198.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 (14897,10,10,'2019-08-21 15:11:22',198.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 (14898,10,10,'2019-08-21 15:11:22',199.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 (14899,10,10,'2019-08-21 15:11:22',199.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 (14900,10,10,'2019-08-21 15:11:22',200.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 (14901,10,10,'2019-08-21 15:11:22',201.658000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14902,10,10,'2019-08-21 15:11:22',202.246000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14903,10,10,'2019-08-21 15:11:22',202.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 (14904,10,10,'2019-08-21 15:11:22',202.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 (14905,10,10,'2019-08-21 15:11:22',203.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 (14906,10,10,'2019-08-21 15:11:22',204.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 (14907,10,10,'2019-08-21 15:11:22',205.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 (14908,10,10,'2019-08-21 15:11:22',205.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 (14909,10,10,'2019-08-21 15:11:22',206.687000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14910,10,10,'2019-08-21 15:11:22',207.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 (14911,10,10,'2019-08-21 15:11:22',207.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 (14912,10,10,'2019-08-21 15:11:22',207.858000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14913,10,10,'2019-08-21 15:11:22',208.234000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14914,10,10,'2019-08-21 15:11:22',208.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 (14915,10,10,'2019-08-21 15:11:22',209.000000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14916,10,10,'2019-08-21 15:11:22',209.783000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14917,10,10,'2019-08-21 15:11:22',210.549000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14918,10,10,'2019-08-21 15:11:22',211.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 (14919,10,10,'2019-08-21 15:11:22',212.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 (14920,10,10,'2019-08-21 15:11:22',212.979000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14921,10,10,'2019-08-21 15:11:22',213.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 (14922,10,10,'2019-08-21 15:11:22',213.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 (14923,10,10,'2019-08-21 15:11:22',214.761000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14924,10,10,'2019-08-21 15:11:22',215.146000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14925,10,10,'2019-08-21 15:11:22',215.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 (14926,10,10,'2019-08-21 15:11:22',216.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 (14927,10,10,'2019-08-21 15:11:22',217.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 (14928,10,10,'2019-08-21 15:11:22',218.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 (14929,10,10,'2019-08-21 15:11:22',219.123000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14930,10,10,'2019-08-21 15:11:22',220.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 (14931,10,10,'2019-08-21 15:11:22',220.415000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14932,10,10,'2019-08-21 15:11:22',220.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 (14933,10,10,'2019-08-21 15:11:22',221.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 (14934,10,10,'2019-08-21 15:11:22',221.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 (14935,10,10,'2019-08-21 15:11:22',222.231000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14936,10,10,'2019-08-21 15:11:22',222.785000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14937,10,10,'2019-08-21 15:11:22',223.651000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14938,10,10,'2019-08-21 15:11:22',224.434000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14939,10,10,'2019-08-21 15:11:22',225.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 (14940,10,10,'2019-08-21 15:11:22',226.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 (14941,10,10,'2019-08-21 15:11:22',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 (14942,10,10,'2019-08-21 15:11:22',227.098000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14943,10,10,'2019-08-21 15:11:22',228.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 (14944,10,10,'2019-08-21 15:11:22',228.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 (14945,10,10,'2019-08-21 15:11:22',229.348000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14946,10,10,'2019-08-21 15:11:22',229.728000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14947,10,10,'2019-08-21 15:11:22',230.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 (14948,10,10,'2019-08-21 15:11:22',230.627000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14949,10,10,'2019-08-21 15:11:22',231.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 (14950,10,10,'2019-08-21 15:11:22',232.508000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14951,10,10,'2019-08-21 15:11:22',233.440000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14952,10,10,'2019-08-21 15:11:22',234.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 (14953,10,10,'2019-08-21 15:11:22',235.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 (14954,10,10,'2019-08-21 15:11:22',235.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 (14955,10,10,'2019-08-21 15:11:22',236.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 (14956,10,10,'2019-08-21 15:11:22',237.036000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14957,10,10,'2019-08-21 15:11:22',237.443000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14958,10,10,'2019-08-21 15:11:22',237.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 (14959,10,10,'2019-08-21 15:11:22',238.868000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14960,10,10,'2019-08-21 15:11:22',239.733000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14961,10,10,'2019-08-21 15:11:22',240.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 (14962,10,10,'2019-08-21 15:11:22',240.699000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14963,10,10,'2019-08-21 15:11:22',241.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 (14964,10,10,'2019-08-21 15:11:22',242.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 (14965,10,10,'2019-08-21 15:11:22',242.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 (14966,10,10,'2019-08-21 15:11:22',243.463000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14967,10,10,'2019-08-21 15:11:22',243.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 (14968,10,10,'2019-08-21 15:11:22',244.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 (14969,10,10,'2019-08-21 15:11:22',244.690000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14970,10,10,'2019-08-21 15:11:22',245.178000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14971,10,10,'2019-08-21 15:11:22',246.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 (14972,10,10,'2019-08-21 15:11:22',247.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 (14973,10,10,'2019-08-21 15:11:22',247.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 (14974,10,10,'2019-08-21 15:11:22',248.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 (14975,10,10,'2019-08-21 15:11:22',249.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 (14976,10,10,'2019-08-21 15:11:22',250.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 (14977,10,10,'2019-08-21 15:11:22',251.090000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14978,10,10,'2019-08-21 15:11:22',251.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 (14979,10,10,'2019-08-21 15:11:22',252.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 (14980,10,10,'2019-08-21 15:11:22',253.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 (14981,10,10,'2019-08-21 15:11:22',253.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 (14982,10,10,'2019-08-21 15:11:22',254.151000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14983,10,10,'2019-08-21 15:11:22',254.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 (14984,10,10,'2019-08-21 15:11:22',255.350000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14985,10,10,'2019-08-21 15:11:22',255.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 (14986,10,10,'2019-08-21 15:11:22',256.849000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14987,10,10,'2019-08-21 15:11:22',257.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 (14988,10,10,'2019-08-21 15:11:22',257.830000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14989,10,10,'2019-08-21 15:11:22',258.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 (14990,10,10,'2019-08-21 15:11:22',259.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 (14991,10,10,'2019-08-21 15:11:22',260.134000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14992,10,10,'2019-08-21 15:11:22',260.661000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14993,10,10,'2019-08-21 15:11:22',261.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 (14994,10,10,'2019-08-21 15:11:22',262.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 (14995,10,10,'2019-08-21 15:11:22',262.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 (14996,10,10,'2019-08-21 15:11:22',263.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 (14997,10,10,'2019-08-21 15:11:22',264.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 (14998,10,10,'2019-08-21 15:11:22',265.040000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14999,10,10,'2019-08-21 15:11:22',265.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 (15000,10,10,'2019-08-21 15:11:22',266.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 (15001,10,10,'2019-08-21 15:11:22',266.737000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15002,10,10,'2019-08-21 15:11:22',267.587000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15003,10,10,'2019-08-21 15:11:22',268.369000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15004,10,10,'2019-08-21 15:11:22',268.724000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15005,10,10,'2019-08-21 15:11:22',269.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 (15006,10,10,'2019-08-21 15:11:22',274.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 (15007,10,10,'2019-08-21 15:11:22',274.387000,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 (15008,10,10,'2019-08-21 15:11:22',280.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 (15009,10,10,'2019-08-21 15:11:22',280.905000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15010,10,10,'2019-08-21 15:11:22',281.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 (15011,10,10,'2019-08-21 15:11:22',282.787000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15012,10,10,'2019-08-21 15:11:22',283.753000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15013,10,10,'2019-08-21 15:11:22',284.535000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15014,10,10,'2019-08-21 15:11:22',284.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 (15015,10,10,'2019-08-21 15:11:22',285.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 (15016,10,10,'2019-08-21 15:11:22',285.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 (15017,10,10,'2019-08-21 15:11:22',286.217000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15018,10,10,'2019-08-21 15:11:22',287.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 (15019,10,10,'2019-08-21 15:11:22',287.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 (15020,10,10,'2019-08-21 15:11:22',288.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 (15021,10,10,'2019-08-21 15:11:22',288.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 (15022,10,10,'2019-08-21 15:11:22',289.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 (15023,10,10,'2019-08-21 15:11:22',290.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 (15024,10,10,'2019-08-21 15:11:22',291.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 (15025,10,10,'2019-08-21 15:11:22',291.710000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15026,10,10,'2019-08-21 15:11:22',292.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 (15027,10,10,'2019-08-21 15:11:22',292.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 (15028,10,10,'2019-08-21 15:11:22',293.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 (15029,10,10,'2019-08-21 15:11:22',293.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 (15030,10,10,'2019-08-21 15:11:22',294.707000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15031,10,10,'2019-08-21 15:11:22',295.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 (15032,10,10,'2019-08-21 15:11:22',296.372000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15033,10,10,'2019-08-21 15:11:22',297.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 (15034,10,10,'2019-08-21 15:11:22',298.104000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15035,10,10,'2019-08-21 15:11:22',298.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 (15036,10,10,'2019-08-21 15:11:22',299.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 (15037,10,10,'2019-08-21 15:11:22',299.669000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15038,10,10,'2019-08-21 15:11:22',299.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 (15039,10,10,'2019-08-21 15:11:22',300.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 (15040,10,10,'2019-08-21 15:11:22',301.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 (15041,10,10,'2019-08-21 15:11:22',301.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 (15042,10,10,'2019-08-21 15:11:22',302.433000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15043,10,10,'2019-08-21 15:11:22',303.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 (15044,10,10,'2019-08-21 15:11:22',304.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 (15045,10,10,'2019-08-21 15:11:22',305.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 (15046,10,10,'2019-08-21 15:11:22',305.599000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15047,10,10,'2019-08-21 15:11:22',306.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 (15048,10,10,'2019-08-21 15:11:22',306.588000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15049,10,10,'2019-08-21 15:11:22',306.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 (15050,10,10,'2019-08-21 15:11:22',307.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 (15051,10,10,'2019-08-21 15:11:22',308.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 (15052,10,10,'2019-08-21 15:11:22',309.524000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15053,10,10,'2019-08-21 15:11:22',309.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 (15054,10,10,'2019-08-21 15:11:22',310.374000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15055,10,10,'2019-08-21 15:11:22',311.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 (15056,10,10,'2019-08-21 15:11:22',311.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 (15057,10,10,'2019-08-21 15:11:22',311.972000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15058,10,10,'2019-08-21 15:11:22',312.737000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15059,10,10,'2019-08-21 15:11:22',313.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 (15060,10,10,'2019-08-21 15:11:22',314.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 (15061,10,10,'2019-08-21 15:11:22',315.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 (15062,10,10,'2019-08-21 15:11:22',315.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 (15063,10,10,'2019-08-21 15:11:22',316.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 (15064,10,10,'2019-08-21 15:11:22',316.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 (15065,10,10,'2019-08-21 15:11:22',317.249000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15066,10,10,'2019-08-21 15:11:22',318.198000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15067,10,10,'2019-08-21 15:11:22',319.197000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15068,10,10,'2019-08-21 15:11:22',319.519000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15069,10,10,'2019-08-21 15:11:22',319.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 (15070,10,10,'2019-08-21 15:11:22',320.745000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15071,10,10,'2019-08-21 15:11:22',321.744000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15072,10,10,'2019-08-21 15:11:22',322.610000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15073,10,10,'2019-08-21 15:11:22',323.476000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15074,10,10,'2019-08-21 15:11:22',324.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 (15075,10,10,'2019-08-21 15:11:22',324.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 (15076,10,10,'2019-08-21 15:11:22',325.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 (15077,10,10,'2019-08-21 15:11:22',325.615000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15078,10,10,'2019-08-21 15:11:22',326.156000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15079,10,10,'2019-08-21 15:11:22',327.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 (15080,10,10,'2019-08-21 15:11:22',327.987000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15081,10,10,'2019-08-21 15:11:22',328.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 (15082,10,10,'2019-08-21 15:11:22',328.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 (15083,10,10,'2019-08-21 15:11:22',329.836000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15084,10,10,'2019-08-21 15:11:22',330.802000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15085,10,10,'2019-08-21 15:11:22',331.116000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15086,10,10,'2019-08-21 15:11:22',331.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 (15087,10,10,'2019-08-21 15:11:22',332.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 (15088,10,10,'2019-08-21 15:11:22',333.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 (15089,10,10,'2019-08-21 15:11:22',334.104000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15090,10,10,'2019-08-21 15:11:22',334.563000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15091,10,10,'2019-08-21 15:11:22',334.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 (15092,10,10,'2019-08-21 15:11:22',335.363000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15093,10,10,'2019-08-21 15:11:22',336.245000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15094,10,10,'2019-08-21 15:11:22',337.095000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15095,10,10,'2019-08-21 15:11:22',337.927000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15096,10,10,'2019-08-21 15:11:22',338.726000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15097,10,10,'2019-08-21 15:11:22',339.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 (15098,10,10,'2019-08-21 15:11:22',340.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 (15099,10,10,'2019-08-21 15:11:22',340.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 (15100,10,10,'2019-08-21 15:11:22',341.456000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15101,10,10,'2019-08-21 15:11:22',342.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 (15102,10,10,'2019-08-21 15:11:22',342.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 (15103,10,10,'2019-08-21 15:11:22',343.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 (15104,10,10,'2019-08-21 15:11:22',344.286000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15105,10,10,'2019-08-21 15:11:22',345.152000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15106,10,10,'2019-08-21 15:11:22',345.601000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15107,10,10,'2019-08-21 15:11:22',346.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 (15108,10,10,'2019-08-21 15:11:22',346.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 (15109,10,10,'2019-08-21 15:11:22',347.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 (15110,10,10,'2019-08-21 15:11:22',347.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 (15111,10,10,'2019-08-21 15:11:22',348.632000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15112,10,10,'2019-08-21 15:11:22',349.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 (15113,10,10,'2019-08-21 15:11:22',350.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 (15114,10,10,'2019-08-21 15:11:22',350.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 (15115,10,10,'2019-08-21 15:11:22',351.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 (15116,10,10,'2019-08-21 15:11:22',352.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 (15117,10,10,'2019-08-21 15:11:22',352.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 (15118,10,10,'2019-08-21 15:11:22',353.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 (15119,10,10,'2019-08-21 15:11:22',353.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 (15120,10,10,'2019-08-21 15:11:22',354.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 (15121,10,10,'2019-08-21 15:11:22',355.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 (15122,10,10,'2019-08-21 15:11:22',356.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 (15123,10,10,'2019-08-21 15:11:22',356.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 (15124,10,10,'2019-08-21 15:11:22',356.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 (15125,10,10,'2019-08-21 15:11:22',357.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 (15126,10,10,'2019-08-21 15:11:22',358.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 (15127,10,10,'2019-08-21 15:11:22',359.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 (15128,10,10,'2019-08-21 15:11:22',360.353000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15129,10,10,'2019-08-21 15:11:22',361.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 (15130,10,10,'2019-08-21 15:11:22',362.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 (15131,10,10,'2019-08-21 15:11:22',362.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 (15132,10,10,'2019-08-21 15:11:22',362.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 (15133,10,10,'2019-08-21 15:11:22',363.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 (15134,10,10,'2019-08-21 15:11:22',364.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 (15135,10,10,'2019-08-21 15:11:22',364.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 (15136,10,10,'2019-08-21 15:11:22',365.563000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15137,10,10,'2019-08-21 15:11:22',366.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 (15138,10,10,'2019-08-21 15:11:22',366.858000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15139,10,10,'2019-08-21 15:11:22',367.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 (15140,10,10,'2019-08-21 15:11:22',367.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 (15141,10,10,'2019-08-21 15:11:22',368.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 (15142,10,10,'2019-08-21 15:11:22',369.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 (15143,10,10,'2019-08-21 15:11:22',370.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 (15144,10,10,'2019-08-21 15:11:22',371.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 (15145,10,10,'2019-08-21 15:11:22',372.090000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15146,10,10,'2019-08-21 15:11:22',372.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 (15147,10,10,'2019-08-21 15:11:22',373.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 (15148,10,10,'2019-08-21 15:11:22',373.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 (15149,10,10,'2019-08-21 15:11:22',373.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 (15150,10,10,'2019-08-21 15:11:22',374.937000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15151,10,10,'2019-08-21 15:11:22',375.936000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15152,10,10,'2019-08-21 15:11:22',376.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 (15153,10,10,'2019-08-21 15:11:22',376.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 (15154,10,10,'2019-08-21 15:11:22',377.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 (15155,10,10,'2019-08-21 15:11:22',378.383000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15156,10,10,'2019-08-21 15:11:22',378.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 (15157,10,10,'2019-08-21 15:11:22',379.231000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15158,10,10,'2019-08-21 15:11:22',379.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 (15159,10,10,'2019-08-21 15:11:22',380.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 (15160,10,10,'2019-08-21 15:11:22',381.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 (15161,10,10,'2019-08-21 15:11:22',381.779000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15162,10,10,'2019-08-21 15:11:22',382.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 (15163,10,10,'2019-08-21 15:11:22',382.761000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15164,10,10,'2019-08-21 15:11:22',383.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 (15165,10,10,'2019-08-21 15:11:22',384.409000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15166,10,10,'2019-08-21 15:11:22',385.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 (15167,10,10,'2019-08-21 15:11:22',385.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 (15168,10,10,'2019-08-21 15:11:22',386.339000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15169,10,10,'2019-08-21 15:11:22',386.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 (15170,10,10,'2019-08-21 15:11:22',387.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 (15171,10,10,'2019-08-21 15:11:22',388.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 (15172,10,10,'2019-08-21 15:11:22',388.505000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15173,10,10,'2019-08-21 15:11:22',389.271000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15174,10,10,'2019-08-21 15:11:22',390.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 (15175,10,10,'2019-08-21 15:11:22',391.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 (15176,10,10,'2019-08-21 15:11:22',392.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 (15177,10,10,'2019-08-21 15:11:22',392.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 (15178,10,10,'2019-08-21 15:11:22',392.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 (15179,10,10,'2019-08-21 15:11:22',393.933000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15180,10,10,'2019-08-21 15:11:22',394.831000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15181,10,10,'2019-08-21 15:11:22',395.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 (15182,10,10,'2019-08-21 15:11:22',395.697000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15183,10,10,'2019-08-21 15:11:22',396.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 (15184,10,10,'2019-08-21 15:11:22',397.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 (15185,10,10,'2019-08-21 15:11:22',398.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 (15186,10,10,'2019-08-21 15:11:22',399.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 (15187,10,10,'2019-08-21 15:11:22',400.093000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15188,10,10,'2019-08-21 15:11:22',400.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 (15189,10,10,'2019-08-21 15:11:22',400.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 (15190,10,10,'2019-08-21 15:11:22',401.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 (15191,10,10,'2019-08-21 15:11:22',401.773000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15192,10,10,'2019-08-21 15:11:22',402.540000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15193,10,10,'2019-08-21 15:11:22',403.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 (15194,10,10,'2019-08-21 15:11:22',403.389000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15195,10,10,'2019-08-21 15:11:22',404.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 (15196,10,10,'2019-08-21 15:11:22',404.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 (15197,10,10,'2019-08-21 15:11:22',405.104000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15198,10,10,'2019-08-21 15:11:22',406.069000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15199,10,10,'2019-08-21 15:11:22',406.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 (15200,10,10,'2019-08-21 15:11:22',407.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 (15201,10,10,'2019-08-21 15:11:22',407.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 (15202,10,10,'2019-08-21 15:11:22',408.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 (15203,10,10,'2019-08-21 15:11:22',409.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 (15204,10,10,'2019-08-21 15:11:22',410.414000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15205,10,10,'2019-08-21 15:11:22',410.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 (15206,10,10,'2019-08-21 15:11:22',411.430000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15207,10,10,'2019-08-21 15:11:22',412.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 (15208,10,10,'2019-08-21 15:11:22',412.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 (15209,10,10,'2019-08-21 15:11:22',413.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 (15210,10,10,'2019-08-21 15:11:22',413.943000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15211,10,10,'2019-08-21 15:11:22',414.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 (15212,10,10,'2019-08-21 15:11:22',415.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 (15213,10,10,'2019-08-21 15:11:22',416.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 (15214,10,10,'2019-08-21 15:11:22',416.674000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15215,10,10,'2019-08-21 15:11:22',417.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 (15216,10,10,'2019-08-21 15:11:22',418.556000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15217,10,10,'2019-08-21 15:11:22',418.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 (15218,10,10,'2019-08-21 15:11:22',419.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 (15219,10,10,'2019-08-21 15:11:22',419.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 (15220,10,10,'2019-08-21 15:11:22',420.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 (15221,10,10,'2019-08-21 15:11:22',421.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 (15222,10,10,'2019-08-21 15:11:22',421.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 (15223,10,10,'2019-08-21 15:11:22',422.917000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15224,10,10,'2019-08-21 15:11:22',423.750000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15225,10,10,'2019-08-21 15:11:22',424.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 (15226,10,10,'2019-08-21 15:11:22',424.615000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15227,10,10,'2019-08-21 15:11:22',424.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 (15228,10,10,'2019-08-21 15:11:22',425.398000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15229,10,10,'2019-08-21 15:11:22',426.181000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15230,10,10,'2019-08-21 15:11:22',427.096000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15231,10,10,'2019-08-21 15:11:22',427.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 (15232,10,10,'2019-08-21 15:11:22',428.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 (15233,10,10,'2019-08-21 15:11:22',429.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 (15234,10,10,'2019-08-21 15:11:22',430.216000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15235,10,10,'2019-08-21 15:11:22',430.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 (15236,10,10,'2019-08-21 15:11:22',431.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 (15237,10,10,'2019-08-21 15:11:22',432.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 (15238,10,10,'2019-08-21 15:11:22',432.760000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15239,10,10,'2019-08-21 15:11:22',433.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 (15240,10,10,'2019-08-21 15:11:22',434.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 (15241,10,10,'2019-08-21 15:11:22',435.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 (15242,10,10,'2019-08-21 15:11:22',435.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 (15243,10,10,'2019-08-21 15:11:22',436.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 (15244,10,10,'2019-08-21 15:11:22',436.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 (15245,10,10,'2019-08-21 15:11:22',437.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 (15246,10,10,'2019-08-21 15:11:22',438.130000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15247,10,10,'2019-08-21 15:11:22',438.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 (15248,10,10,'2019-08-21 15:11:22',439.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 (15249,10,10,'2019-08-21 15:11:22',439.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 (15250,10,10,'2019-08-21 15:11:22',440.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 (15251,10,10,'2019-08-21 15:11:22',440.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 (15252,10,10,'2019-08-21 15:11:22',441.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 (15253,10,10,'2019-08-21 15:11:22',442.113000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15254,10,10,'2019-08-21 15:11:22',442.995000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15255,10,10,'2019-08-21 15:11:22',443.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 (15256,10,10,'2019-08-21 15:11:22',444.610000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15257,10,10,'2019-08-21 15:11:22',445.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 (15258,10,10,'2019-08-21 15:11:22',445.781000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15259,10,10,'2019-08-21 15:11:22',446.292000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15260,10,10,'2019-08-21 15:11:22',446.599000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15261,10,10,'2019-08-21 15:11:22',447.157000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15262,10,10,'2019-08-21 15:11:22',448.140000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15263,10,10,'2019-08-21 15:11:22',449.072000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15264,10,10,'2019-08-21 15:11:22',449.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 (15265,10,10,'2019-08-21 15:11:22',450.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 (15266,10,10,'2019-08-21 15:11:22',450.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 (15267,10,10,'2019-08-21 15:11:22',451.050000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15268,10,10,'2019-08-21 15:11:22',451.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 (15269,10,10,'2019-08-21 15:11:22',452.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 (15270,10,10,'2019-08-21 15:11:22',453.468000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15271,10,10,'2019-08-21 15:11:22',454.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 (15272,10,10,'2019-08-21 15:11:22',454.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 (15273,10,10,'2019-08-21 15:11:22',455.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 (15274,10,10,'2019-08-21 15:11:22',456.114000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15275,10,10,'2019-08-21 15:11:22',456.980000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15276,10,10,'2019-08-21 15:11:22',457.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 (15277,10,10,'2019-08-21 15:11:22',458.176000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15278,10,10,'2019-08-21 15:11:22',458.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 (15279,10,10,'2019-08-21 15:11:22',459.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 (15280,10,10,'2019-08-21 15:11:22',460.626000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15281,10,10,'2019-08-21 15:11:22',461.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 (15282,10,10,'2019-08-21 15:11:22',462.374000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15283,10,10,'2019-08-21 15:11:22',462.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 (15284,10,10,'2019-08-21 15:11:22',463.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 (15285,10,10,'2019-08-21 15:11:22',463.688000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15286,10,10,'2019-08-21 15:11:22',464.272000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15287,10,10,'2019-08-21 15:11:22',465.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 (15288,10,10,'2019-08-21 15:11:22',465.971000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15289,10,10,'2019-08-21 15:11:22',466.803000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15290,10,10,'2019-08-21 15:11:22',467.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 (15291,10,10,'2019-08-21 15:11:22',467.568000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15292,10,10,'2019-08-21 15:11:22',468.401000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15293,10,10,'2019-08-21 15:11:22',469.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 (15294,10,10,'2019-08-21 15:11:22',469.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 (15295,10,10,'2019-08-21 15:11:22',470.133000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15296,10,10,'2019-08-21 15:11:22',470.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 (15297,10,10,'2019-08-21 15:11:22',470.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 (15298,10,10,'2019-08-21 15:11:22',471.288000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15299,10,10,'2019-08-21 15:11:22',471.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 (15300,10,10,'2019-08-21 15:11:22',472.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 (15301,10,10,'2019-08-21 15:11:22',473.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 (15302,10,10,'2019-08-21 15:11:22',474.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 (15303,10,10,'2019-08-21 15:11:22',475.443000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15304,10,10,'2019-08-21 15:11:22',476.343000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15305,10,10,'2019-08-21 15:11:22',477.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 (15306,10,10,'2019-08-21 15:11:22',477.586000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15307,10,10,'2019-08-21 15:11:22',477.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 (15308,10,10,'2019-08-21 15:11:22',478.303000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15309,10,10,'2019-08-21 15:11:22',478.790000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15310,10,10,'2019-08-21 15:11:22',479.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 (15311,10,10,'2019-08-21 15:11:22',480.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 (15312,10,10,'2019-08-21 15:11:22',481.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 (15313,10,10,'2019-08-21 15:11:22',482.485000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15314,10,10,'2019-08-21 15:11:22',482.825000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15315,10,10,'2019-08-21 15:11:22',483.435000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15316,10,10,'2019-08-21 15:11:22',483.733000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15317,10,10,'2019-08-21 15:11:22',484.351000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15318,10,10,'2019-08-21 15:11:22',485.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 (15319,10,10,'2019-08-21 15:11:22',486.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 (15320,10,10,'2019-08-21 15:11:22',487.098000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15321,10,10,'2019-08-21 15:11:22',487.913000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15322,10,10,'2019-08-21 15:11:22',488.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 (15323,10,10,'2019-08-21 15:11:22',488.796000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15324,10,10,'2019-08-21 15:11:22',489.728000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15325,10,10,'2019-08-21 15:11:22',490.123000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15326,10,10,'2019-08-21 15:11:22',490.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 (15327,10,10,'2019-08-21 15:11:22',491.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 (15328,10,10,'2019-08-21 15:11:22',491.879000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15329,10,10,'2019-08-21 15:11:22',492.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 (15330,10,10,'2019-08-21 15:11:22',493.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 (15331,10,10,'2019-08-21 15:11:22',493.655000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15332,10,10,'2019-08-21 15:11:22',494.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 (15333,10,10,'2019-08-21 15:11:22',495.105000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15334,10,10,'2019-08-21 15:11:22',496.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 (15335,10,10,'2019-08-21 15:11:22',497.069000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15336,10,10,'2019-08-21 15:11:22',498.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 (15337,10,10,'2019-08-21 15:11:22',498.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 (15338,10,10,'2019-08-21 15:11:22',498.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 (15339,10,10,'2019-08-21 15:11:22',499.634000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15340,10,10,'2019-08-21 15:11:22',500.005000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15341,10,10,'2019-08-21 15:11:22',500.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 (15342,10,10,'2019-08-21 15:11:22',501.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 (15343,10,10,'2019-08-21 15:11:22',502.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 (15344,10,10,'2019-08-21 15:11:22',503.279000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15345,10,10,'2019-08-21 15:11:22',504.079000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15346,10,10,'2019-08-21 15:11:22',504.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 (15347,10,10,'2019-08-21 15:11:22',505.044000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15348,10,10,'2019-08-21 15:11:22',505.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 (15349,10,10,'2019-08-21 15:11:22',505.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 (15350,10,10,'2019-08-21 15:11:22',506.810000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15351,10,10,'2019-08-21 15:11:22',507.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 (15352,10,10,'2019-08-21 15:11:22',508.724000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15353,10,10,'2019-08-21 15:11:22',509.099000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15354,10,10,'2019-08-21 15:11:22',509.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 (15355,10,10,'2019-08-21 15:11:22',510.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 (15356,10,10,'2019-08-21 15:11:22',510.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 (15357,10,10,'2019-08-21 15:11:22',511.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 (15358,10,10,'2019-08-21 15:11:22',512.286000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15359,10,10,'2019-08-21 15:11:22',513.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 (15360,10,10,'2019-08-21 15:11:22',513.550000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15361,10,10,'2019-08-21 15:11:22',514.201000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15362,10,10,'2019-08-21 15:11:22',515.050000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15363,10,10,'2019-08-21 15:11:22',515.850000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15364,10,10,'2019-08-21 15:11:22',516.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 (15365,10,10,'2019-08-21 15:11:22',517.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 (15366,10,10,'2019-08-21 15:11:22',518.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 (15367,10,10,'2019-08-21 15:11:22',518.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 (15368,10,10,'2019-08-21 15:11:22',519.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 (15369,10,10,'2019-08-21 15:11:22',519.758000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15370,10,10,'2019-08-21 15:11:22',520.277000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15371,10,10,'2019-08-21 15:11:22',521.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 (15372,10,10,'2019-08-21 15:11:22',522.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 (15373,10,10,'2019-08-21 15:11:22',522.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 (15374,10,10,'2019-08-21 15:11:22',523.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 (15375,10,10,'2019-08-21 15:11:22',523.791000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15376,10,10,'2019-08-21 15:11:22',524.739000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15377,10,10,'2019-08-21 15:11:22',525.572000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15378,10,10,'2019-08-21 15:11:22',526.504000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15379,10,10,'2019-08-21 15:11:22',526.904000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15380,10,10,'2019-08-21 15:11:22',527.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 (15381,10,10,'2019-08-21 15:11:22',528.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 (15382,10,10,'2019-08-21 15:11:22',528.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 (15383,10,10,'2019-08-21 15:11:22',529.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 (15384,10,10,'2019-08-21 15:11:22',530.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 (15385,10,10,'2019-08-21 15:11:22',531.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 (15386,10,10,'2019-08-21 15:11:22',531.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 (15387,10,10,'2019-08-21 15:11:22',532.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 (15388,10,10,'2019-08-21 15:11:22',533.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 (15389,10,10,'2019-08-21 15:11:22',533.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 (15390,10,10,'2019-08-21 15:11:22',533.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 (15391,10,10,'2019-08-21 15:11:22',534.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 (15392,10,10,'2019-08-21 15:11:22',535.744000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15393,10,10,'2019-08-21 15:11:22',536.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 (15394,10,10,'2019-08-21 15:11:22',537.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 (15395,10,10,'2019-08-21 15:11:22',537.625000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15396,10,10,'2019-08-21 15:11:22',538.007000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15397,10,10,'2019-08-21 15:11:22',538.574000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15398,10,10,'2019-08-21 15:11:22',539.440000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15399,10,10,'2019-08-21 15:11:22',540.239000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15400,10,10,'2019-08-21 15:11:22',541.038000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15401,10,10,'2019-08-21 15:11:22',541.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 (15402,10,10,'2019-08-21 15:11:22',542.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 (15403,10,10,'2019-08-21 15:11:22',543.216000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15404,10,10,'2019-08-21 15:11:22',543.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 (15405,10,10,'2019-08-21 15:11:22',544.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 (15406,10,10,'2019-08-21 15:11:22',544.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 (15407,10,10,'2019-08-21 15:11:22',577.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 (15408,10,10,'2019-08-21 15:11:22',584.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 (15409,10,10,'2019-08-21 15:11:22',584.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 (15410,10,10,'2019-08-21 15:11:22',585.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 (15411,10,10,'2019-08-21 15:11:22',585.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 (15412,10,10,'2019-08-21 15:11:22',586.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 (15413,10,10,'2019-08-21 15:11:22',587.248000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15414,10,10,'2019-08-21 15:11:22',587.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 (15415,10,10,'2019-08-21 15:11:22',588.681000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15416,10,10,'2019-08-21 15:11:22',589.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 (15417,10,10,'2019-08-21 15:11:22',589.862000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15418,10,10,'2019-08-21 15:11:22',590.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 (15419,10,10,'2019-08-21 15:11:22',591.161000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15420,10,10,'2019-08-21 15:11:22',592.160000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15421,10,10,'2019-08-21 15:11:22',592.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 (15422,10,10,'2019-08-21 15:11:22',593.741000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15423,10,10,'2019-08-21 15:11:22',594.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 (15424,10,10,'2019-08-21 15:11:22',594.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 (15425,10,10,'2019-08-21 15:11:22',595.406000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15426,10,10,'2019-08-21 15:11:22',595.837000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15427,10,10,'2019-08-21 15:11:22',596.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 (15428,10,10,'2019-08-21 15:11:22',597.171000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15429,10,10,'2019-08-21 15:11:22',598.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 (15430,10,10,'2019-08-21 15:11:22',598.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 (15431,10,10,'2019-08-21 15:11:22',598.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 (15432,10,10,'2019-08-21 15:11:22',599.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 (15433,10,10,'2019-08-21 15:11:22',600.768000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15434,10,10,'2019-08-21 15:11:22',601.137000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15435,10,10,'2019-08-21 15:11:22',601.616000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15436,10,10,'2019-08-21 15:11:22',602.415000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15437,10,10,'2019-08-21 15:11:22',602.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 (15438,10,10,'2019-08-21 15:11:22',603.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 (15439,10,10,'2019-08-21 15:11:22',604.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 (15440,10,10,'2019-08-21 15:11:22',605.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 (15441,10,10,'2019-08-21 15:11:22',605.995000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15442,10,10,'2019-08-21 15:11:22',606.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 (15443,10,10,'2019-08-21 15:11:22',607.293000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15444,10,10,'2019-08-21 15:11:22',607.660000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15445,10,10,'2019-08-21 15:11:22',608.476000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15446,10,10,'2019-08-21 15:11:22',608.838000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15447,10,10,'2019-08-21 15:11:22',609.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 (15448,10,10,'2019-08-21 15:11:22',610.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 (15449,10,10,'2019-08-21 15:11:22',611.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 (15450,10,10,'2019-08-21 15:11:22',611.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 (15451,10,10,'2019-08-21 15:11:22',612.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 (15452,10,10,'2019-08-21 15:11:22',612.954000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15453,10,10,'2019-08-21 15:11:22',613.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 (15454,10,10,'2019-08-21 15:11:22',614.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 (15455,10,10,'2019-08-21 15:11:22',614.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 (15456,10,10,'2019-08-21 15:11:22',615.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 (15457,10,10,'2019-08-21 15:11:22',616.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 (15458,10,10,'2019-08-21 15:11:22',616.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 (15459,10,10,'2019-08-21 15:11:22',617.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 (15460,10,10,'2019-08-21 15:11:22',617.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 (15461,10,10,'2019-08-21 15:11:22',618.148000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15462,10,10,'2019-08-21 15:11:22',619.048000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15463,10,10,'2019-08-21 15:11:22',619.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 (15464,10,10,'2019-08-21 15:11:22',620.796000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15465,10,10,'2019-08-21 15:11:22',621.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 (15466,10,10,'2019-08-21 15:11:22',622.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 (15467,10,10,'2019-08-21 15:11:22',623.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 (15468,10,10,'2019-08-21 15:11:22',624.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 (15469,10,10,'2019-08-21 15:11:22',624.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 (15470,10,10,'2019-08-21 15:11:22',625.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 (15471,10,10,'2019-08-21 15:11:22',625.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 (15472,10,10,'2019-08-21 15:11:22',626.473000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15473,10,10,'2019-08-21 15:11:22',627.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 (15474,10,10,'2019-08-21 15:11:22',627.732000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15475,10,10,'2019-08-21 15:11:22',628.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 (15476,10,10,'2019-08-21 15:11:22',629.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 (15477,10,10,'2019-08-21 15:11:22',630.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 (15478,10,10,'2019-08-21 15:11:22',630.428000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15479,10,10,'2019-08-21 15:11:22',630.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 (15480,10,10,'2019-08-21 15:11:22',631.850000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15481,10,10,'2019-08-21 15:11:22',632.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 (15482,10,10,'2019-08-21 15:11:22',633.415000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15483,10,10,'2019-08-21 15:11:22',633.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 (15484,10,10,'2019-08-21 15:11:22',634.397000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15485,10,10,'2019-08-21 15:11:22',635.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 (15486,10,10,'2019-08-21 15:11:22',636.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 (15487,10,10,'2019-08-21 15:11:22',636.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 (15488,10,10,'2019-08-21 15:11:22',637.244000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15489,10,10,'2019-08-21 15:11:22',638.160000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15490,10,10,'2019-08-21 15:11:22',639.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 (15491,10,10,'2019-08-21 15:11:22',640.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 (15492,10,10,'2019-08-21 15:11:22',640.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 (15493,10,10,'2019-08-21 15:11:22',641.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 (15494,10,10,'2019-08-21 15:11:22',642.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 (15495,10,10,'2019-08-21 15:11:22',642.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 (15496,10,10,'2019-08-21 15:11:22',643.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 (15497,10,10,'2019-08-21 15:11:22',644.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 (15498,10,10,'2019-08-21 15:11:22',645.235000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15499,10,10,'2019-08-21 15:11:22',645.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 (15500,10,10,'2019-08-21 15:11:22',646.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 (15501,10,10,'2019-08-21 15:11:22',647.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 (15502,10,10,'2019-08-21 15:11:22',647.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 (15503,10,10,'2019-08-21 15:11:22',647.799000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15504,10,10,'2019-08-21 15:11:22',648.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 (15505,10,10,'2019-08-21 15:11:22',649.464000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15506,10,10,'2019-08-21 15:11:22',650.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 (15507,10,10,'2019-08-21 15:11:22',650.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 (15508,10,10,'2019-08-21 15:11:22',651.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 (15509,10,10,'2019-08-21 15:11:22',651.665000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15510,10,10,'2019-08-21 15:11:22',652.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 (15511,10,10,'2019-08-21 15:11:22',653.077000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15512,10,10,'2019-08-21 15:11:22',653.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 (15513,10,10,'2019-08-21 15:11:22',654.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 (15514,10,10,'2019-08-21 15:11:22',655.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 (15515,10,10,'2019-08-21 15:11:22',655.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 (15516,10,10,'2019-08-21 15:11:22',656.523000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15517,10,10,'2019-08-21 15:11:22',657.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 (15518,10,10,'2019-08-21 15:11:22',657.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 (15519,10,10,'2019-08-21 15:11:22',658.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 (15520,10,10,'2019-08-21 15:11:22',658.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 (15521,10,10,'2019-08-21 15:11:22',659.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 (15522,10,10,'2019-08-21 15:11:22',659.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 (15523,10,10,'2019-08-21 15:11:22',660.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 (15524,10,10,'2019-08-21 15:11:22',661.395000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15525,10,10,'2019-08-21 15:11:22',661.801000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15526,10,10,'2019-08-21 15:11:22',662.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 (15527,10,10,'2019-08-21 15:11:22',663.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 (15528,10,10,'2019-08-21 15:11:22',664.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 (15529,10,10,'2019-08-21 15:11:22',664.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 (15530,10,10,'2019-08-21 15:11:22',665.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 (15531,10,10,'2019-08-21 15:11:22',666.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 (15532,10,10,'2019-08-21 15:11:22',666.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 (15533,10,10,'2019-08-21 15:11:22',667.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 (15534,10,10,'2019-08-21 15:11:22',668.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 (15535,10,10,'2019-08-21 15:11:22',668.571000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15536,10,10,'2019-08-21 15:11:22',668.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 (15537,10,10,'2019-08-21 15:11:22',669.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 (15538,10,10,'2019-08-21 15:11:22',670.176000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15539,10,10,'2019-08-21 15:11:22',670.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 (15540,10,10,'2019-08-21 15:11:22',671.457000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15541,10,10,'2019-08-21 15:11:22',672.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 (15542,10,10,'2019-08-21 15:11:22',673.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 (15543,10,10,'2019-08-21 15:11:22',674.304000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15544,10,10,'2019-08-21 15:11:22',675.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 (15545,10,10,'2019-08-21 15:11:22',675.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 (15546,10,10,'2019-08-21 15:11:22',676.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 (15547,10,10,'2019-08-21 15:11:22',676.718000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15548,10,10,'2019-08-21 15:11:22',677.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 (15549,10,10,'2019-08-21 15:11:22',677.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 (15550,10,10,'2019-08-21 15:11:22',678.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 (15551,10,10,'2019-08-21 15:11:22',679.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 (15552,10,10,'2019-08-21 15:11:22',679.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 (15553,10,10,'2019-08-21 15:11:22',679.831000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15554,10,10,'2019-08-21 15:11:22',680.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 (15555,10,10,'2019-08-21 15:11:22',681.712000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15556,10,10,'2019-08-21 15:11:22',682.661000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15557,10,10,'2019-08-21 15:11:22',682.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 (15558,10,10,'2019-08-21 15:11:22',683.660000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15559,10,10,'2019-08-21 15:11:22',684.492000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15560,10,10,'2019-08-21 15:11:22',685.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 (15561,10,10,'2019-08-21 15:11:22',686.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 (15562,10,10,'2019-08-21 15:11:22',687.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 (15563,10,10,'2019-08-21 15:11:22',687.679000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15564,10,10,'2019-08-21 15:11:22',688.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 (15565,10,10,'2019-08-21 15:11:22',689.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 (15566,10,10,'2019-08-21 15:11:22',689.374000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15567,10,10,'2019-08-21 15:11:22',689.804000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15568,10,10,'2019-08-21 15:11:22',690.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 (15569,10,10,'2019-08-21 15:11:22',691.131000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15570,10,10,'2019-08-21 15:11:22',691.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 (15571,10,10,'2019-08-21 15:11:22',691.907000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15572,10,10,'2019-08-21 15:11:22',692.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 (15573,10,10,'2019-08-21 15:11:22',693.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 (15574,10,10,'2019-08-21 15:11:22',694.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 (15575,10,10,'2019-08-21 15:11:22',695.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 (15576,10,10,'2019-08-21 15:11:22',696.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 (15577,10,10,'2019-08-21 15:11:22',696.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 (15578,10,10,'2019-08-21 15:11:22',697.878000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15579,10,10,'2019-08-21 15:11:22',698.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 (15580,10,10,'2019-08-21 15:11:22',698.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 (15581,10,10,'2019-08-21 15:11:22',699.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 (15582,10,10,'2019-08-21 15:11:22',699.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 (15583,10,10,'2019-08-21 15:11:22',700.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 (15584,10,10,'2019-08-21 15:11:22',701.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 (15585,10,10,'2019-08-21 15:11:22',702.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 (15586,10,10,'2019-08-21 15:11:22',703.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 (15587,10,10,'2019-08-21 15:11:22',703.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 (15588,10,10,'2019-08-21 15:11:22',704.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 (15589,10,10,'2019-08-21 15:11:22',704.696000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15590,10,10,'2019-08-21 15:11:22',705.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 (15591,10,10,'2019-08-21 15:11:22',705.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 (15592,10,10,'2019-08-21 15:11:22',706.901000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15593,10,10,'2019-08-21 15:11:22',707.717000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15594,10,10,'2019-08-21 15:11:22',708.239000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15595,10,10,'2019-08-21 15:11:22',708.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 (15596,10,10,'2019-08-21 15:11:22',709.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 (15597,10,10,'2019-08-21 15:11:22',709.516000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15598,10,10,'2019-08-21 15:11:22',710.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 (15599,10,10,'2019-08-21 15:11:22',711.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 (15600,10,10,'2019-08-21 15:11:22',711.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 (15601,10,10,'2019-08-21 15:11:22',712.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 (15602,10,10,'2019-08-21 15:11:22',713.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 (15603,10,10,'2019-08-21 15:11:22',713.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 (15604,10,10,'2019-08-21 15:11:22',714.677000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15605,10,10,'2019-08-21 15:11:22',715.072000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15606,10,10,'2019-08-21 15:11:22',715.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 (15607,10,10,'2019-08-21 15:11:22',716.458000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15608,10,10,'2019-08-21 15:11:22',717.423000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15609,10,10,'2019-08-21 15:11:22',717.889000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15610,10,10,'2019-08-21 15:11:22',718.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 (15611,10,10,'2019-08-21 15:11:22',719.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 (15612,10,10,'2019-08-21 15:11:22',720.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 (15613,10,10,'2019-08-21 15:11:22',720.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 (15614,10,10,'2019-08-21 15:11:22',721.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 (15615,10,10,'2019-08-21 15:11:22',721.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 (15616,10,10,'2019-08-21 15:11:22',722.319000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15617,10,10,'2019-08-21 15:11:22',722.718000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15618,10,10,'2019-08-21 15:11:22',723.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 (15619,10,10,'2019-08-21 15:11:22',723.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 (15620,10,10,'2019-08-21 15:11:22',724.549000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15621,10,10,'2019-08-21 15:11:22',725.397000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15622,10,10,'2019-08-21 15:11:22',726.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 (15623,10,10,'2019-08-21 15:11:22',727.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 (15624,10,10,'2019-08-21 15:11:22',727.729000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15625,10,10,'2019-08-21 15:11:22',728.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 (15626,10,10,'2019-08-21 15:11:22',729.193000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15627,10,10,'2019-08-21 15:11:22',730.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 (15628,10,10,'2019-08-21 15:11:22',730.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 (15629,10,10,'2019-08-21 15:11:22',731.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 (15630,10,10,'2019-08-21 15:11:22',731.708000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15631,10,10,'2019-08-21 15:11:22',732.557000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15632,10,10,'2019-08-21 15:11:22',733.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 (15633,10,10,'2019-08-21 15:11:22',733.355000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15634,10,10,'2019-08-21 15:11:22',733.906000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15635,10,10,'2019-08-21 15:11:22',734.255000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15636,10,10,'2019-08-21 15:11:22',735.221000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15637,10,10,'2019-08-21 15:11:22',736.220000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15638,10,10,'2019-08-21 15:11:22',737.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 (15639,10,10,'2019-08-21 15:11:22',737.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 (15640,10,10,'2019-08-21 15:11:22',738.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 (15641,10,10,'2019-08-21 15:11:22',738.950000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15642,10,10,'2019-08-21 15:11:22',739.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 (15643,10,10,'2019-08-21 15:11:22',740.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 (15644,10,10,'2019-08-21 15:11:22',741.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 (15645,10,10,'2019-08-21 15:11:22',742.362000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15646,10,10,'2019-08-21 15:11:22',742.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 (15647,10,10,'2019-08-21 15:11:22',743.245000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15648,10,10,'2019-08-21 15:11:22',744.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 (15649,10,10,'2019-08-21 15:11:22',745.060000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15650,10,10,'2019-08-21 15:11:22',745.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 (15651,10,10,'2019-08-21 15:11:22',746.251000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15652,10,10,'2019-08-21 15:11:22',746.625000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15653,10,10,'2019-08-21 15:11:22',747.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 (15654,10,10,'2019-08-21 15:11:22',747.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 (15655,10,10,'2019-08-21 15:11:22',748.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 (15656,10,10,'2019-08-21 15:11:22',749.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 (15657,10,10,'2019-08-21 15:11:22',750.388000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15658,10,10,'2019-08-21 15:11:22',751.253000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15659,10,10,'2019-08-21 15:11:22',751.661000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15660,10,10,'2019-08-21 15:11:22',752.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 (15661,10,10,'2019-08-21 15:11:22',752.590000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15662,10,10,'2019-08-21 15:11:22',753.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 (15663,10,10,'2019-08-21 15:11:22',753.917000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15664,10,10,'2019-08-21 15:11:22',754.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 (15665,10,10,'2019-08-21 15:11:22',754.866000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15666,10,10,'2019-08-21 15:11:22',755.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 (15667,10,10,'2019-08-21 15:11:22',756.563000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15668,10,10,'2019-08-21 15:11:22',757.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 (15669,10,10,'2019-08-21 15:11:22',757.707000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15670,10,10,'2019-08-21 15:11:22',758.179000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15671,10,10,'2019-08-21 15:11:22',759.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 (15672,10,10,'2019-08-21 15:11:22',760.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 (15673,10,10,'2019-08-21 15:11:22',761.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 (15674,10,10,'2019-08-21 15:11:22',761.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 (15675,10,10,'2019-08-21 15:11:22',761.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 (15676,10,10,'2019-08-21 15:11:22',762.330000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15677,10,10,'2019-08-21 15:11:22',762.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 (15678,10,10,'2019-08-21 15:11:22',763.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 (15679,10,10,'2019-08-21 15:11:22',764.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 (15680,10,10,'2019-08-21 15:11:22',764.894000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15681,10,10,'2019-08-21 15:11:22',765.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 (15682,10,10,'2019-08-21 15:11:22',766.536000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15683,10,10,'2019-08-21 15:11:22',767.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 (15684,10,10,'2019-08-21 15:11:22',768.218000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15685,10,10,'2019-08-21 15:11:22',769.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 (15686,10,10,'2019-08-21 15:11:22',769.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 (15687,10,10,'2019-08-21 15:11:22',770.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 (15688,10,10,'2019-08-21 15:11:22',770.932000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15689,10,10,'2019-08-21 15:11:22',771.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 (15690,10,10,'2019-08-21 15:11:22',771.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 (15691,10,10,'2019-08-21 15:11:22',772.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 (15692,10,10,'2019-08-21 15:11:22',773.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 (15693,10,10,'2019-08-21 15:11:22',774.527000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15694,10,10,'2019-08-21 15:11:22',774.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 (15695,10,10,'2019-08-21 15:11:22',775.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 (15696,10,10,'2019-08-21 15:11:22',776.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 (15697,10,10,'2019-08-21 15:11:22',776.309000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15698,10,10,'2019-08-21 15:11:22',777.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 (15699,10,10,'2019-08-21 15:11:22',778.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 (15700,10,10,'2019-08-21 15:11:22',779.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 (15701,10,10,'2019-08-21 15:11:22',780.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 (15702,10,10,'2019-08-21 15:11:22',780.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 (15703,10,10,'2019-08-21 15:11:22',781.037000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15704,10,10,'2019-08-21 15:11:22',781.457000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15705,10,10,'2019-08-21 15:11:22',781.953000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15706,10,10,'2019-08-21 15:11:22',782.719000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15707,10,10,'2019-08-21 15:11:22',783.551000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15708,10,10,'2019-08-21 15:11:22',784.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 (15709,10,10,'2019-08-21 15:11:22',784.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 (15710,10,10,'2019-08-21 15:11:22',785.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 (15711,10,10,'2019-08-21 15:11:22',786.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 (15712,10,10,'2019-08-21 15:11:22',787.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 (15713,10,10,'2019-08-21 15:11:22',787.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 (15714,10,10,'2019-08-21 15:11:22',788.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 (15715,10,10,'2019-08-21 15:11:22',789.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 (15716,10,10,'2019-08-21 15:11:22',789.777000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15717,10,10,'2019-08-21 15:11:22',790.760000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15718,10,10,'2019-08-21 15:11:22',791.056000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15719,10,10,'2019-08-21 15:11:22',791.676000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15720,10,10,'2019-08-21 15:11:22',792.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 (15721,10,10,'2019-08-21 15:11:22',793.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 (15722,10,10,'2019-08-21 15:11:22',794.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 (15723,10,10,'2019-08-21 15:11:22',795.172000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15724,10,10,'2019-08-21 15:11:22',795.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 (15725,10,10,'2019-08-21 15:11:22',795.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 (15726,10,10,'2019-08-21 15:11:22',796.787000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15727,10,10,'2019-08-21 15:11:22',797.173000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15728,10,10,'2019-08-21 15:11:22',797.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 (15729,10,10,'2019-08-21 15:11:22',798.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 (15730,10,10,'2019-08-21 15:11:22',798.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 (15731,10,10,'2019-08-21 15:11:22',799.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 (15732,10,10,'2019-08-21 15:11:22',800.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 (15733,10,10,'2019-08-21 15:11:22',801.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 (15734,10,10,'2019-08-21 15:11:22',802.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 (15735,10,10,'2019-08-21 15:11:22',802.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 (15736,10,10,'2019-08-21 15:11:22',803.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 (15737,10,10,'2019-08-21 15:11:22',804.350000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15738,10,10,'2019-08-21 15:11:22',804.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 (15739,10,10,'2019-08-21 15:11:22',805.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 (15740,10,10,'2019-08-21 15:11:22',805.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 (15741,10,10,'2019-08-21 15:11:22',806.442000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15742,10,10,'2019-08-21 15:11:22',807.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 (15743,10,10,'2019-08-21 15:11:22',808.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 (15744,10,10,'2019-08-21 15:11:22',809.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 (15745,10,10,'2019-08-21 15:11:22',809.547000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15746,10,10,'2019-08-21 15:11:22',810.205000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15747,10,10,'2019-08-21 15:11:22',810.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 (15748,10,10,'2019-08-21 15:11:22',811.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 (15749,10,10,'2019-08-21 15:11:22',812.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 (15750,10,10,'2019-08-21 15:11:22',812.969000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15751,10,10,'2019-08-21 15:11:22',813.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 (15752,10,10,'2019-08-21 15:11:22',813.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 (15753,10,10,'2019-08-21 15:11:22',814.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 (15754,10,10,'2019-08-21 15:11:22',815.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 (15755,10,10,'2019-08-21 15:11:22',816.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 (15756,10,10,'2019-08-21 15:11:22',816.915000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15757,10,10,'2019-08-21 15:11:22',817.331000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15758,10,10,'2019-08-21 15:11:22',818.297000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15759,10,10,'2019-08-21 15:11:22',818.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 (15760,10,10,'2019-08-21 15:11:22',819.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 (15761,10,10,'2019-08-21 15:11:22',820.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 (15762,10,10,'2019-08-21 15:11:22',821.110000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15763,10,10,'2019-08-21 15:11:22',822.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 (15764,10,10,'2019-08-21 15:11:22',822.477000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15765,10,10,'2019-08-21 15:11:22',822.875000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15766,10,10,'2019-08-21 15:11:22',823.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 (15767,10,10,'2019-08-21 15:11:22',824.656000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15768,10,10,'2019-08-21 15:11:22',825.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 (15769,10,10,'2019-08-21 15:11:22',825.572000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15770,10,10,'2019-08-21 15:11:22',826.371000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15771,10,10,'2019-08-21 15:11:22',827.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 (15772,10,10,'2019-08-21 15:11:22',828.319000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15773,10,10,'2019-08-21 15:11:22',828.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 (15774,10,10,'2019-08-21 15:11:22',829.317000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15775,10,10,'2019-08-21 15:11:22',830.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 (15776,10,10,'2019-08-21 15:11:22',830.531000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15777,10,10,'2019-08-21 15:11:22',831.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 (15778,10,10,'2019-08-21 15:11:22',831.898000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15779,10,10,'2019-08-21 15:11:22',832.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 (15780,10,10,'2019-08-21 15:11:22',833.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 (15781,10,10,'2019-08-21 15:11:22',833.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 (15782,10,10,'2019-08-21 15:11:22',834.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 (15783,10,10,'2019-08-21 15:11:22',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 (15784,10,10,'2019-08-21 15:11:22',836.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 (15785,10,10,'2019-08-21 15:11:22',836.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 (15786,10,10,'2019-08-21 15:11:22',836.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 (15787,10,10,'2019-08-21 15:11:22',837.385000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15788,10,10,'2019-08-21 15:11:22',837.642000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15789,10,10,'2019-08-21 15:11:22',838.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 (15790,10,10,'2019-08-21 15:11:22',839.390000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15791,10,10,'2019-08-21 15:11:22',840.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 (15792,10,10,'2019-08-21 15:11:22',840.938000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15793,10,10,'2019-08-21 15:11:22',841.342000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15794,10,10,'2019-08-21 15:11:22',841.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 (15795,10,10,'2019-08-21 15:11:22',842.786000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15796,10,10,'2019-08-21 15:11:22',843.652000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15797,10,10,'2019-08-21 15:11:22',844.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 (15798,10,10,'2019-08-21 15:11:22',844.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 (15799,10,10,'2019-08-21 15:11:22',845.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 (15800,10,10,'2019-08-21 15:11:22',846.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 (15801,10,10,'2019-08-21 15:11:22',846.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 (15802,10,10,'2019-08-21 15:11:22',846.641000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15803,10,10,'2019-08-21 15:11:22',847.065000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15804,10,10,'2019-08-21 15:11:22',847.831000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15805,10,10,'2019-08-21 15:11:22',848.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 (15806,10,10,'2019-08-21 15:11:22',859.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 (15807,10,10,'2019-08-21 15:11:22',866.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 (15808,10,10,'2019-08-21 15:11:22',866.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 (15809,10,10,'2019-08-21 15:11:22',866.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 (15810,10,10,'2019-08-21 15:11:22',867.809000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15811,10,10,'2019-08-21 15:11:22',868.791000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15812,10,10,'2019-08-21 15:11:22',869.623000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15813,10,10,'2019-08-21 15:11:22',870.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 (15814,10,10,'2019-08-21 15:11:22',871.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 (15815,10,10,'2019-08-21 15:11:22',871.288000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15816,10,10,'2019-08-21 15:11:22',872.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 (15817,10,10,'2019-08-21 15:11:22',873.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 (15818,10,10,'2019-08-21 15:11:22',873.373000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15819,10,10,'2019-08-21 15:11:22',873.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 (15820,10,10,'2019-08-21 15:11:22',874.784000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15821,10,10,'2019-08-21 15:11:22',875.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 (15822,10,10,'2019-08-21 15:11:22',875.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 (15823,10,10,'2019-08-21 15:11:22',876.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 (15824,10,10,'2019-08-21 15:11:22',877.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 (15825,10,10,'2019-08-21 15:11:22',877.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 (15826,10,10,'2019-08-21 15:11:22',878.147000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15827,10,10,'2019-08-21 15:11:22',878.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 (15828,10,10,'2019-08-21 15:11:22',879.945000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15829,10,10,'2019-08-21 15:11:22',880.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 (15830,10,10,'2019-08-21 15:11:22',881.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 (15831,10,10,'2019-08-21 15:11:22',881.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 (15832,10,10,'2019-08-21 15:11:22',881.983000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15833,10,10,'2019-08-21 15:11:22',882.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 (15834,10,10,'2019-08-21 15:11:22',883.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 (15835,10,10,'2019-08-21 15:11:22',884.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 (15836,10,10,'2019-08-21 15:11:22',885.206000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15837,10,10,'2019-08-21 15:11:22',886.089000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15838,10,10,'2019-08-21 15:11:22',886.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 (15839,10,10,'2019-08-21 15:11:22',886.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 (15840,10,10,'2019-08-21 15:11:22',887.670000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15841,10,10,'2019-08-21 15:11:22',888.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 (15842,10,10,'2019-08-21 15:11:22',889.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 (15843,10,10,'2019-08-21 15:11:22',890.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 (15844,10,10,'2019-08-21 15:11:22',890.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 (15845,10,10,'2019-08-21 15:11:22',891.050000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15846,10,10,'2019-08-21 15:11:22',891.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 (15847,10,10,'2019-08-21 15:11:22',891.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 (15848,10,10,'2019-08-21 15:11:22',892.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 (15849,10,10,'2019-08-21 15:11:22',893.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 (15850,10,10,'2019-08-21 15:11:22',893.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 (15851,10,10,'2019-08-21 15:11:22',894.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 (15852,10,10,'2019-08-21 15:11:22',895.165000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15853,10,10,'2019-08-21 15:11:22',895.744000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15854,10,10,'2019-08-21 15:11:22',896.644000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15855,10,10,'2019-08-21 15:11:22',897.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 (15856,10,10,'2019-08-21 15:11:22',898.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 (15857,10,10,'2019-08-21 15:11:22',898.829000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15858,10,10,'2019-08-21 15:11:22',899.440000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15859,10,10,'2019-08-21 15:11:22',900.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 (15860,10,10,'2019-08-21 15:11:22',901.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 (15861,10,10,'2019-08-21 15:11:22',901.635000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15862,10,10,'2019-08-21 15:11:22',902.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 (15863,10,10,'2019-08-21 15:11:22',902.937000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15864,10,10,'2019-08-21 15:11:22',903.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 (15865,10,10,'2019-08-21 15:11:22',904.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 (15866,10,10,'2019-08-21 15:11:22',904.602000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15867,10,10,'2019-08-21 15:11:22',905.501000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15868,10,10,'2019-08-21 15:11:22',906.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 (15869,10,10,'2019-08-21 15:11:22',906.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 (15870,10,10,'2019-08-21 15:11:22',907.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 (15871,10,10,'2019-08-21 15:11:22',908.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 (15872,10,10,'2019-08-21 15:11:22',908.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 (15873,10,10,'2019-08-21 15:11:22',909.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 (15874,10,10,'2019-08-21 15:11:22',910.895000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15875,10,10,'2019-08-21 15:11:22',911.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 (15876,10,10,'2019-08-21 15:11:22',911.693000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15877,10,10,'2019-08-21 15:11:22',912.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 (15878,10,10,'2019-08-21 15:11:22',912.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 (15879,10,10,'2019-08-21 15:11:22',913.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 (15880,10,10,'2019-08-21 15:11:22',913.717000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15881,10,10,'2019-08-21 15:11:22',914.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 (15882,10,10,'2019-08-21 15:11:22',915.090000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15883,10,10,'2019-08-21 15:11:22',915.473000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15884,10,10,'2019-08-21 15:11:22',916.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 (15885,10,10,'2019-08-21 15:11:22',916.955000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15886,10,10,'2019-08-21 15:11:22',917.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 (15887,10,10,'2019-08-21 15:11:22',918.786000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15888,10,10,'2019-08-21 15:11:22',919.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 (15889,10,10,'2019-08-21 15:11:22',920.146000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15890,10,10,'2019-08-21 15:11:22',920.601000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15891,10,10,'2019-08-21 15:11:22',921.600000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15892,10,10,'2019-08-21 15:11:22',921.973000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15893,10,10,'2019-08-21 15:11:22',922.415000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15894,10,10,'2019-08-21 15:11:22',923.381000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15895,10,10,'2019-08-21 15:11:22',924.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 (15896,10,10,'2019-08-21 15:11:22',925.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 (15897,10,10,'2019-08-21 15:11:22',925.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 (15898,10,10,'2019-08-21 15:11:22',926.111000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15899,10,10,'2019-08-21 15:11:22',926.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 (15900,10,10,'2019-08-21 15:11:22',927.393000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15901,10,10,'2019-08-21 15:11:22',927.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 (15902,10,10,'2019-08-21 15:11:22',928.759000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15903,10,10,'2019-08-21 15:11:22',929.607000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15904,10,10,'2019-08-21 15:11:22',930.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 (15905,10,10,'2019-08-21 15:11:22',931.173000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15906,10,10,'2019-08-21 15:11:22',931.531000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15907,10,10,'2019-08-21 15:11:22',931.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 (15908,10,10,'2019-08-21 15:11:22',932.837000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15909,10,10,'2019-08-21 15:11:22',933.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 (15910,10,10,'2019-08-21 15:11:22',934.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 (15911,10,10,'2019-08-21 15:11:22',934.619000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15912,10,10,'2019-08-21 15:11:22',935.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 (15913,10,10,'2019-08-21 15:11:22',935.800000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15914,10,10,'2019-08-21 15:11:22',936.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 (15915,10,10,'2019-08-21 15:11:22',937.366000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15916,10,10,'2019-08-21 15:11:22',938.132000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15917,10,10,'2019-08-21 15:11:22',938.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 (15918,10,10,'2019-08-21 15:11:22',939.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 (15919,10,10,'2019-08-21 15:11:22',939.996000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15920,10,10,'2019-08-21 15:11:22',940.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 (15921,10,10,'2019-08-21 15:11:22',941.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 (15922,10,10,'2019-08-21 15:11:22',941.928000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15923,10,10,'2019-08-21 15:11:22',942.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 (15924,10,10,'2019-08-21 15:11:22',943.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 (15925,10,10,'2019-08-21 15:11:22',943.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 (15926,10,10,'2019-08-21 15:11:22',944.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 (15927,10,10,'2019-08-21 15:11:22',945.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 (15928,10,10,'2019-08-21 15:11:22',946.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 (15929,10,10,'2019-08-21 15:11:22',946.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 (15930,10,10,'2019-08-21 15:11:22',947.321000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15931,10,10,'2019-08-21 15:11:22',948.171000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15932,10,10,'2019-08-21 15:11:22',949.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 (15933,10,10,'2019-08-21 15:11:22',949.886000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15934,10,10,'2019-08-21 15:11:22',950.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 (15935,10,10,'2019-08-21 15:11:22',950.718000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15936,10,10,'2019-08-21 15:11:22',951.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 (15937,10,10,'2019-08-21 15:11:22',951.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 (15938,10,10,'2019-08-21 15:11:22',952.482000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15939,10,10,'2019-08-21 15:11:22',952.848000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15940,10,10,'2019-08-21 15:11:22',953.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 (15941,10,10,'2019-08-21 15:11:22',954.264000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15942,10,10,'2019-08-21 15:11:22',955.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 (15943,10,10,'2019-08-21 15:11:22',956.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 (15944,10,10,'2019-08-21 15:11:22',957.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 (15945,10,10,'2019-08-21 15:11:22',958.076000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15946,10,10,'2019-08-21 15:11:22',958.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 (15947,10,10,'2019-08-21 15:11:22',959.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 (15948,10,10,'2019-08-21 15:11:22',960.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 (15949,10,10,'2019-08-21 15:11:22',960.674000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15950,10,10,'2019-08-21 15:11:22',960.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 (15951,10,10,'2019-08-21 15:11:22',961.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 (15952,10,10,'2019-08-21 15:11:22',962.372000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15953,10,10,'2019-08-21 15:11:22',963.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 (15954,10,10,'2019-08-21 15:11:22',964.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 (15955,10,10,'2019-08-21 15:11:22',964.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 (15956,10,10,'2019-08-21 15:11:22',965.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 (15957,10,10,'2019-08-21 15:11:22',965.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 (15958,10,10,'2019-08-21 15:11:22',965.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 (15959,10,10,'2019-08-21 15:11:22',966.601000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15960,10,10,'2019-08-21 15:11:22',966.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 (15961,10,10,'2019-08-21 15:11:22',967.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 (15962,10,10,'2019-08-21 15:11:22',968.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 (15963,10,10,'2019-08-21 15:11:22',969.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 (15964,10,10,'2019-08-21 15:11:22',969.612000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15965,10,10,'2019-08-21 15:11:22',970.180000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15966,10,10,'2019-08-21 15:11:22',971.162000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15967,10,10,'2019-08-21 15:11:22',971.994000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15968,10,10,'2019-08-21 15:11:22',972.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 (15969,10,10,'2019-08-21 15:11:22',972.777000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15970,10,10,'2019-08-21 15:11:22',973.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 (15971,10,10,'2019-08-21 15:11:22',973.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 (15972,10,10,'2019-08-21 15:11:22',974.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 (15973,10,10,'2019-08-21 15:11:22',975.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 (15974,10,10,'2019-08-21 15:11:22',976.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 (15975,10,10,'2019-08-21 15:11:22',977.155000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15976,10,10,'2019-08-21 15:11:22',977.495000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15977,10,10,'2019-08-21 15:11:22',978.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 (15978,10,10,'2019-08-21 15:11:22',978.887000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15979,10,10,'2019-08-21 15:11:22',979.836000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15980,10,10,'2019-08-21 15:11:22',980.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 (15981,10,10,'2019-08-21 15:11:22',981.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 (15982,10,10,'2019-08-21 15:11:22',981.945000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15983,10,10,'2019-08-21 15:11:22',982.434000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15984,10,10,'2019-08-21 15:11:22',983.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 (15985,10,10,'2019-08-21 15:11:22',983.651000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15986,10,10,'2019-08-21 15:11:22',984.098000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15987,10,10,'2019-08-21 15:11:22',984.947000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15988,10,10,'2019-08-21 15:11:22',985.930000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15989,10,10,'2019-08-21 15:11:22',986.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 (15990,10,10,'2019-08-21 15:11:22',986.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 (15991,10,10,'2019-08-21 15:11:22',987.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 (15992,10,10,'2019-08-21 15:11:22',988.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 (15993,10,10,'2019-08-21 15:11:22',988.748000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15994,10,10,'2019-08-21 15:11:22',989.275000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15995,10,10,'2019-08-21 15:11:22',989.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 (15996,10,10,'2019-08-21 15:11:22',990.042000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15997,10,10,'2019-08-21 15:11:22',990.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 (15998,10,10,'2019-08-21 15:11:22',991.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 (15999,10,10,'2019-08-21 15:11:22',992.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 (16000,10,10,'2019-08-21 15:11:22',993.505000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16001,10,10,'2019-08-21 15:11:22',994.437000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16002,10,10,'2019-08-21 15:11:22',995.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 (16003,10,10,'2019-08-21 15:11:22',996.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 (16004,10,10,'2019-08-21 15:11:22',996.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 (16005,10,10,'2019-08-21 15:11:22',997.233000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16006,10,10,'2019-08-21 15:11:22',997.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 (16007,10,10,'2019-08-21 15:11:22',998.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 (16008,10,10,'2019-08-21 15:11:22',998.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 (16009,10,10,'2019-08-21 15:11:22',998.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 (16010,10,10,'2019-08-21 15:11:22',999.781000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16011,10,10,'2019-08-21 15:11:22',1000.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 (16012,10,10,'2019-08-21 15:11:22',1000.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 (16013,10,10,'2019-08-21 15:11:22',1001.712000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16014,10,10,'2019-08-21 15:11:22',1002.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 (16015,10,10,'2019-08-21 15:11:22',1003.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 (16016,10,10,'2019-08-21 15:11:22',1004.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 (16017,10,10,'2019-08-21 15:11:22',1005.225000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16018,10,10,'2019-08-21 15:11:22',1005.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 (16019,10,10,'2019-08-21 15:11:22',1006.174000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16020,10,10,'2019-08-21 15:11:22',1006.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 (16021,10,10,'2019-08-21 15:11:22',1007.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 (16022,10,10,'2019-08-21 15:11:22',1008.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 (16023,10,10,'2019-08-21 15:11:22',1008.871000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16024,10,10,'2019-08-21 15:11:22',1009.670000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16025,10,10,'2019-08-21 15:11:22',1010.553000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16026,10,10,'2019-08-21 15:11:22',1010.953000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16027,10,10,'2019-08-21 15:11:22',1011.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 (16028,10,10,'2019-08-21 15:11:22',1012.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 (16029,10,10,'2019-08-21 15:11:22',1013.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 (16030,10,10,'2019-08-21 15:11:22',1013.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 (16031,10,10,'2019-08-21 15:11:22',1014.049000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16032,10,10,'2019-08-21 15:11:22',1014.831000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16033,10,10,'2019-08-21 15:11:22',1015.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 (16034,10,10,'2019-08-21 15:11:22',1015.813000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16035,10,10,'2019-08-21 15:11:22',1016.679000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16036,10,10,'2019-08-21 15:11:22',1017.009000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16037,10,10,'2019-08-21 15:11:22',1017.661000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16038,10,10,'2019-08-21 15:11:22',1018.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 (16039,10,10,'2019-08-21 15:11:22',1019.426000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16040,10,10,'2019-08-21 15:11:22',1020.358000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16041,10,10,'2019-08-21 15:11:22',1021.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 (16042,10,10,'2019-08-21 15:11:22',1021.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 (16043,10,10,'2019-08-21 15:11:22',1022.123000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16044,10,10,'2019-08-21 15:11:22',1022.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 (16045,10,10,'2019-08-21 15:11:22',1023.357000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16046,10,10,'2019-08-21 15:11:22',1023.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 (16047,10,10,'2019-08-21 15:11:22',1024.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 (16048,10,10,'2019-08-21 15:11:22',1025.652000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16049,10,10,'2019-08-21 15:11:22',1025.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 (16050,10,10,'2019-08-21 15:11:22',1026.452000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16051,10,10,'2019-08-21 15:11:22',1027.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 (16052,10,10,'2019-08-21 15:11:22',1027.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 (16053,10,10,'2019-08-21 15:11:22',1028.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 (16054,10,10,'2019-08-21 15:11:22',1029.183000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16055,10,10,'2019-08-21 15:11:22',1029.948000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16056,10,10,'2019-08-21 15:11:22',1030.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 (16057,10,10,'2019-08-21 15:11:22',1031.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 (16058,10,10,'2019-08-21 15:11:22',1031.597000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16059,10,10,'2019-08-21 15:11:22',1032.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 (16060,10,10,'2019-08-21 15:11:22',1033.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 (16061,10,10,'2019-08-21 15:11:22',1033.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 (16062,10,10,'2019-08-21 15:11:22',1034.243000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16063,10,10,'2019-08-21 15:11:22',1035.192000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16064,10,10,'2019-08-21 15:11:22',1035.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 (16065,10,10,'2019-08-21 15:11:22',1036.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 (16066,10,10,'2019-08-21 15:11:22',1037.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 (16067,10,10,'2019-08-21 15:11:22',1038.139000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16068,10,10,'2019-08-21 15:11:22',1038.537000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16069,10,10,'2019-08-21 15:11:22',1039.005000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16070,10,10,'2019-08-21 15:11:22',1039.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 (16071,10,10,'2019-08-21 15:11:22',1040.604000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16072,10,10,'2019-08-21 15:11:22',1040.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 (16073,10,10,'2019-08-21 15:11:22',1041.568000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16074,10,10,'2019-08-21 15:11:22',1042.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 (16075,10,10,'2019-08-21 15:11:22',1043.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 (16076,10,10,'2019-08-21 15:11:22',1044.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 (16077,10,10,'2019-08-21 15:11:22',1044.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 (16078,10,10,'2019-08-21 15:11:22',1045.397000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16079,10,10,'2019-08-21 15:11:22',1046.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 (16080,10,10,'2019-08-21 15:11:22',1047.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 (16081,10,10,'2019-08-21 15:11:22',1048.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 (16082,10,10,'2019-08-21 15:11:22',1048.994000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16083,10,10,'2019-08-21 15:11:22',1049.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 (16084,10,10,'2019-08-21 15:11:22',1050.235000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16085,10,10,'2019-08-21 15:11:22',1050.692000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16086,10,10,'2019-08-21 15:11:22',1051.194000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16087,10,10,'2019-08-21 15:11:22',1051.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 (16088,10,10,'2019-08-21 15:11:22',1052.340000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16089,10,10,'2019-08-21 15:11:22',1053.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 (16090,10,10,'2019-08-21 15:11:22',1053.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 (16091,10,10,'2019-08-21 15:11:22',1054.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 (16092,10,10,'2019-08-21 15:11:22',1054.871000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16093,10,10,'2019-08-21 15:11:22',1055.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 (16094,10,10,'2019-08-21 15:11:22',1056.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 (16095,10,10,'2019-08-21 15:11:22',1056.469000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16096,10,10,'2019-08-21 15:11:22',1057.418000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16097,10,10,'2019-08-21 15:11:22',1058.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 (16098,10,10,'2019-08-21 15:11:22',1059.183000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16099,10,10,'2019-08-21 15:11:22',1060.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 (16100,10,10,'2019-08-21 15:11:22',1060.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 (16101,10,10,'2019-08-21 15:11:22',1060.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 (16102,10,10,'2019-08-21 15:11:22',1061.469000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16103,10,10,'2019-08-21 15:11:22',1061.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 (16104,10,10,'2019-08-21 15:11:22',1062.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 (16105,10,10,'2019-08-21 15:11:22',1062.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 (16106,10,10,'2019-08-21 15:11:22',1063.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 (16107,10,10,'2019-08-21 15:11:22',1064.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 (16108,10,10,'2019-08-21 15:11:22',1065.326000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16109,10,10,'2019-08-21 15:11:22',1065.930000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16110,10,10,'2019-08-21 15:11:22',1066.125000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16111,10,10,'2019-08-21 15:11:22',1067.074000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16112,10,10,'2019-08-21 15:11:22',1067.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 (16113,10,10,'2019-08-21 15:11:22',1068.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 (16114,10,10,'2019-08-21 15:11:22',1068.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 (16115,10,10,'2019-08-21 15:11:22',1069.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 (16116,10,10,'2019-08-21 15:11:22',1070.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 (16117,10,10,'2019-08-21 15:11:22',1070.754000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16118,10,10,'2019-08-21 15:11:22',1071.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 (16119,10,10,'2019-08-21 15:11:22',1072.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 (16120,10,10,'2019-08-21 15:11:22',1073.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 (16121,10,10,'2019-08-21 15:11:22',1073.917000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16122,10,10,'2019-08-21 15:11:22',1074.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 (16123,10,10,'2019-08-21 15:11:22',1074.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 (16124,10,10,'2019-08-21 15:11:22',1075.648000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16125,10,10,'2019-08-21 15:11:22',1076.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 (16126,10,10,'2019-08-21 15:11:22',1076.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 (16127,10,10,'2019-08-21 15:11:22',1077.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 (16128,10,10,'2019-08-21 15:11:22',1078.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 (16129,10,10,'2019-08-21 15:11:22',1078.961000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16130,10,10,'2019-08-21 15:11:22',1079.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 (16131,10,10,'2019-08-21 15:11:22',1079.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 (16132,10,10,'2019-08-21 15:11:22',1080.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 (16133,10,10,'2019-08-21 15:11:22',1080.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 (16134,10,10,'2019-08-21 15:11:22',1081.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 (16135,10,10,'2019-08-21 15:11:22',1082.507000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16136,10,10,'2019-08-21 15:11:22',1083.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 (16137,10,10,'2019-08-21 15:11:22',1084.405000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16138,10,10,'2019-08-21 15:11:22',1085.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 (16139,10,10,'2019-08-21 15:11:22',1085.874000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16140,10,10,'2019-08-21 15:11:22',1086.170000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16141,10,10,'2019-08-21 15:11:22',1086.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 (16142,10,10,'2019-08-21 15:11:22',1086.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 (16143,10,10,'2019-08-21 15:11:22',1087.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 (16144,10,10,'2019-08-21 15:11:22',1088.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 (16145,10,10,'2019-08-21 15:11:22',1088.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 (16146,10,10,'2019-08-21 15:11:22',1089.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 (16147,10,10,'2019-08-21 15:11:22',1090.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 (16148,10,10,'2019-08-21 15:11:22',1091.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 (16149,10,10,'2019-08-21 15:11:22',1091.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 (16150,10,10,'2019-08-21 15:11:22',1092.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 (16151,10,10,'2019-08-21 15:11:22',1093.329000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16152,10,10,'2019-08-21 15:11:22',1093.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 (16153,10,10,'2019-08-21 15:11:22',1094.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 (16154,10,10,'2019-08-21 15:11:22',1094.654000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16155,10,10,'2019-08-21 15:11:22',1095.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 (16156,10,10,'2019-08-21 15:11:22',1096.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 (16157,10,10,'2019-08-21 15:11:22',1096.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 (16158,10,10,'2019-08-21 15:11:22',1097.774000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16159,10,10,'2019-08-21 15:11:22',1098.573000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16160,10,10,'2019-08-21 15:11:22',1099.035000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16161,10,10,'2019-08-21 15:11:22',1099.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 (16162,10,10,'2019-08-21 15:11:22',1100.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 (16163,10,10,'2019-08-21 15:11:22',1100.711000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16164,10,10,'2019-08-21 15:11:22',1101.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 (16165,10,10,'2019-08-21 15:11:22',1102.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 (16166,10,10,'2019-08-21 15:11:22',1103.102000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16167,10,10,'2019-08-21 15:11:22',1103.900000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16168,10,10,'2019-08-21 15:11:22',1104.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 (16169,10,10,'2019-08-21 15:11:22',1105.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 (16170,10,10,'2019-08-21 15:11:22',1105.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 (16171,10,10,'2019-08-21 15:11:22',1106.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 (16172,10,10,'2019-08-21 15:11:22',1106.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 (16173,10,10,'2019-08-21 15:11:22',1107.230000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16174,10,10,'2019-08-21 15:11:22',1108.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 (16175,10,10,'2019-08-21 15:11:22',1109.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 (16176,10,10,'2019-08-21 15:11:22',1109.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 (16177,10,10,'2019-08-21 15:11:22',1109.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 (16178,10,10,'2019-08-21 15:11:22',1110.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 (16179,10,10,'2019-08-21 15:11:22',1110.793000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16180,10,10,'2019-08-21 15:11:22',1111.626000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16181,10,10,'2019-08-21 15:11:22',1112.491000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16182,10,10,'2019-08-21 15:11:22',1113.407000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16183,10,10,'2019-08-21 15:11:22',1114.339000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16184,10,10,'2019-08-21 15:11:22',1115.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 (16185,10,10,'2019-08-21 15:11:22',1116.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 (16186,10,10,'2019-08-21 15:11:22',1116.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 (16187,10,10,'2019-08-21 15:11:22',1117.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 (16188,10,10,'2019-08-21 15:11:22',1117.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 (16189,10,10,'2019-08-21 15:11:22',1117.886000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16190,10,10,'2019-08-21 15:11:22',1118.817000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16191,11,11,'2023-02-09 10:39:10',1.365000,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16192,11,11,'2023-02-09 10:39:10',1.535719,0.000000,NULL,'2',NULL,NULL,'SESS',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16193,11,11,'2023-02-09 10:39:10',1.586724,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16194,11,11,'2023-02-09 10:39:10',1.587720,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16195,11,11,'2023-02-09 10:39:10',1.589722,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16196,11,11,'2023-02-09 10:39:10',1.590718,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16197,11,11,'2023-02-09 10:39:10',2.686000,0.000000,NULL,'5',NULL,NULL,'boundary',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16198,11,11,'2023-02-09 10:39:10',2.689001,0.000000,NULL,'nan',NULL,NULL,'VEnd',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16199,11,11,'2023-02-09 10:39:10',4.023997,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16200,11,11,'2023-02-09 10:39:10',7.154718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16201,11,11,'2023-02-09 10:39:10',7.386723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16202,11,11,'2023-02-09 10:39:10',7.885724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16203,11,11,'2023-02-09 10:39:10',8.560726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16204,11,11,'2023-02-09 10:39:10',10.784723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16205,11,11,'2023-02-09 10:39:10',10.799720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16206,11,11,'2023-02-09 10:39:10',11.039720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16207,11,11,'2023-02-09 10:39:10',11.060994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16208,11,11,'2023-02-09 10:39:10',11.538722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16209,11,11,'2023-02-09 10:39:10',12.078721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16210,11,11,'2023-02-09 10:39:10',12.568720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16211,11,11,'2023-02-09 10:39:10',12.581726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16212,11,11,'2023-02-09 10:39:10',12.811718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16213,11,11,'2023-02-09 10:39:10',12.833002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16214,11,11,'2023-02-09 10:39:10',13.310720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16215,11,11,'2023-02-09 10:39:10',13.997721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16216,11,11,'2023-02-09 10:39:10',14.280721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16217,11,11,'2023-02-09 10:39:10',14.302718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16218,11,11,'2023-02-09 10:39:10',14.531725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16219,11,11,'2023-02-09 10:39:10',14.552003,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16220,11,11,'2023-02-09 10:39:10',15.030727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16221,11,11,'2023-02-09 10:39:10',15.623723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16222,11,11,'2023-02-09 10:39:10',15.632725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16223,11,11,'2023-02-09 10:39:10',15.645720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16224,11,11,'2023-02-09 10:39:10',15.890720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16225,11,11,'2023-02-09 10:39:10',15.911993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16226,11,11,'2023-02-09 10:39:10',16.389722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16227,11,11,'2023-02-09 10:39:10',17.050722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16228,11,11,'2023-02-09 10:39:10',17.168726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16229,11,11,'2023-02-09 10:39:10',17.183722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16230,11,11,'2023-02-09 10:39:10',17.423723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16231,11,11,'2023-02-09 10:39:10',17.444996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16232,11,11,'2023-02-09 10:39:10',17.922725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16233,11,11,'2023-02-09 10:39:10',18.569724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16234,11,11,'2023-02-09 10:39:10',18.672721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16235,11,11,'2023-02-09 10:39:10',18.685726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16236,11,11,'2023-02-09 10:39:10',18.929720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16237,11,11,'2023-02-09 10:39:10',18.951003,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16238,11,11,'2023-02-09 10:39:10',19.428721,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16239,11,11,'2023-02-09 10:39:10',20.115722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16240,11,11,'2023-02-09 10:39:10',20.192718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16241,11,11,'2023-02-09 10:39:10',20.207725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16242,11,11,'2023-02-09 10:39:10',20.435727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16243,11,11,'2023-02-09 10:39:10',20.457000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16244,11,11,'2023-02-09 10:39:10',20.934718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16245,11,11,'2023-02-09 10:39:10',21.528720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16246,11,11,'2023-02-09 10:39:10',21.791724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16247,11,11,'2023-02-09 10:39:10',21.805725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16248,11,11,'2023-02-09 10:39:10',22.034722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16249,11,11,'2023-02-09 10:39:10',22.055995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16250,11,11,'2023-02-09 10:39:10',22.533724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16251,11,11,'2023-02-09 10:39:10',23.128721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16252,11,11,'2023-02-09 10:39:10',23.440719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16253,11,11,'2023-02-09 10:39:10',23.455726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16254,11,11,'2023-02-09 10:39:10',23.687721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16255,11,11,'2023-02-09 10:39:10',23.708994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16256,11,11,'2023-02-09 10:39:10',24.186722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16257,11,11,'2023-02-09 10:39:10',24.887724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16258,11,11,'2023-02-09 10:39:10',25.159720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16259,11,11,'2023-02-09 10:39:10',25.173721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16260,11,11,'2023-02-09 10:39:10',25.420723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16261,11,11,'2023-02-09 10:39:10',25.441000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16262,11,11,'2023-02-09 10:39:10',25.919724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16263,11,11,'2023-02-09 10:39:10',26.553718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16264,11,11,'2023-02-09 10:39:10',26.783721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16265,11,11,'2023-02-09 10:39:10',26.799723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16266,11,11,'2023-02-09 10:39:10',27.032724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16267,11,11,'2023-02-09 10:39:10',27.053997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16268,11,11,'2023-02-09 10:39:10',27.531725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16269,11,11,'2023-02-09 10:39:10',28.192725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16270,11,11,'2023-02-09 10:39:10',28.247724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16271,11,11,'2023-02-09 10:39:10',28.261725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16272,11,11,'2023-02-09 10:39:10',28.485723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16273,11,11,'2023-02-09 10:39:10',28.506996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16274,11,11,'2023-02-09 10:39:10',28.984725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16275,11,11,'2023-02-09 10:39:10',29.565721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16276,11,11,'2023-02-09 10:39:10',29.576725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16277,11,11,'2023-02-09 10:39:10',29.590726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16278,11,11,'2023-02-09 10:39:10',29.831723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16279,11,11,'2023-02-09 10:39:10',29.852000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16280,11,11,'2023-02-09 10:39:10',30.330724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16281,11,11,'2023-02-09 10:39:10',31.017725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16282,11,11,'2023-02-09 10:39:10',31.471726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16283,11,11,'2023-02-09 10:39:10',31.487719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16284,11,11,'2023-02-09 10:39:10',31.724722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16285,11,11,'2023-02-09 10:39:10',31.745995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16286,11,11,'2023-02-09 10:39:10',32.223723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16287,11,11,'2023-02-09 10:39:10',32.737722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16288,11,11,'2023-02-09 10:39:10',33.550723,0.000000,NULL,'nan',NULL,NULL,'dist',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16289,11,11,'2023-02-09 10:39:10',33.633000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16290,11,11,'2023-02-09 10:39:10',34.631003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16291,11,11,'2023-02-09 10:39:10',36.921726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16292,11,11,'2023-02-09 10:39:10',36.937719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16293,11,11,'2023-02-09 10:39:10',37.175718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16294,11,11,'2023-02-09 10:39:10',37.197002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16295,11,11,'2023-02-09 10:39:10',37.674720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16296,11,11,'2023-02-09 10:39:10',38.321719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16297,11,11,'2023-02-09 10:39:10',38.619726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16298,11,11,'2023-02-09 10:39:10',38.636724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16299,11,11,'2023-02-09 10:39:10',38.867723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16300,11,11,'2023-02-09 10:39:10',38.888996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16301,11,11,'2023-02-09 10:39:10',39.366724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16302,11,11,'2023-02-09 10:39:10',39.987723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16303,11,11,'2023-02-09 10:39:10',40.114719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16304,11,11,'2023-02-09 10:39:10',40.130721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16305,11,11,'2023-02-09 10:39:10',40.374725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16306,11,11,'2023-02-09 10:39:10',40.395998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16307,11,11,'2023-02-09 10:39:10',40.873727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16308,11,11,'2023-02-09 10:39:10',41.413726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16309,11,11,'2023-02-09 10:39:10',41.458727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16310,11,11,'2023-02-09 10:39:10',41.473723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16311,11,11,'2023-02-09 10:39:10',41.693718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16312,11,11,'2023-02-09 10:39:10',41.715002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16313,11,11,'2023-02-09 10:39:10',42.192720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16314,11,11,'2023-02-09 10:39:10',42.693723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16315,11,11,'2023-02-09 10:39:10',42.735726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16316,11,11,'2023-02-09 10:39:10',42.756718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16317,11,11,'2023-02-09 10:39:10',42.986721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16318,11,11,'2023-02-09 10:39:10',43.007994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16319,11,11,'2023-02-09 10:39:10',43.485722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16320,11,11,'2023-02-09 10:39:10',44.079724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16321,11,11,'2023-02-09 10:39:10',44.538724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16322,11,11,'2023-02-09 10:39:10',44.553721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16323,11,11,'2023-02-09 10:39:10',44.785725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16324,11,11,'2023-02-09 10:39:10',44.806999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16325,11,11,'2023-02-09 10:39:10',45.284727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16326,11,11,'2023-02-09 10:39:10',45.932722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16327,11,11,'2023-02-09 10:39:10',46.186723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16328,11,11,'2023-02-09 10:39:10',46.203722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16329,11,11,'2023-02-09 10:39:10',46.438724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16330,11,11,'2023-02-09 10:39:10',46.459997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16331,11,11,'2023-02-09 10:39:10',46.937725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16332,11,11,'2023-02-09 10:39:10',47.464719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16333,11,11,'2023-02-09 10:39:10',47.802718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16334,11,11,'2023-02-09 10:39:10',47.817724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16335,11,11,'2023-02-09 10:39:10',48.051720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16336,11,11,'2023-02-09 10:39:10',48.072994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16337,11,11,'2023-02-09 10:39:10',48.550722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16338,11,11,'2023-02-09 10:39:10',49.223722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16339,11,11,'2023-02-09 10:39:10',49.266721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16340,11,11,'2023-02-09 10:39:10',49.281718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16341,11,11,'2023-02-09 10:39:10',49.517725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16342,11,11,'2023-02-09 10:39:10',49.538003,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16343,11,11,'2023-02-09 10:39:10',50.016727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16344,11,11,'2023-02-09 10:39:10',50.583722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16345,11,11,'2023-02-09 10:39:10',51.073722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16346,11,11,'2023-02-09 10:39:10',51.089724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16347,11,11,'2023-02-09 10:39:10',51.330721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16348,11,11,'2023-02-09 10:39:10',51.350998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16349,11,11,'2023-02-09 10:39:10',51.829722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16350,11,11,'2023-02-09 10:39:10',52.449725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16351,11,11,'2023-02-09 10:39:10',52.657720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16352,11,11,'2023-02-09 10:39:10',52.674719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16353,11,11,'2023-02-09 10:39:10',52.915725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16354,11,11,'2023-02-09 10:39:10',52.936999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16355,11,11,'2023-02-09 10:39:10',53.414727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16356,11,11,'2023-02-09 10:39:10',54.008719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16357,11,11,'2023-02-09 10:39:10',54.306726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16358,11,11,'2023-02-09 10:39:10',54.321723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16359,11,11,'2023-02-09 10:39:10',54.555719,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16360,11,11,'2023-02-09 10:39:10',54.577002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16361,11,11,'2023-02-09 10:39:10',55.054720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16362,11,11,'2023-02-09 10:39:10',55.728726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16363,11,11,'2023-02-09 10:39:10',55.745724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16364,11,11,'2023-02-09 10:39:10',55.761727,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16365,11,11,'2023-02-09 10:39:10',55.994727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16366,11,11,'2023-02-09 10:39:10',56.016000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16367,11,11,'2023-02-09 10:39:10',56.493718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16368,11,11,'2023-02-09 10:39:10',57.154719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16369,11,11,'2023-02-09 10:39:10',57.170721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16370,11,11,'2023-02-09 10:39:10',57.187720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16371,11,11,'2023-02-09 10:39:10',57.420720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16372,11,11,'2023-02-09 10:39:10',57.442999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16373,11,11,'2023-02-09 10:39:10',57.919722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16374,11,11,'2023-02-09 10:39:10',58.580722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16375,11,11,'2023-02-09 10:39:10',58.828719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16376,11,11,'2023-02-09 10:39:10',58.845717,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16377,11,11,'2023-02-09 10:39:10',59.086724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16378,11,11,'2023-02-09 10:39:10',59.107997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16379,11,11,'2023-02-09 10:39:10',59.585725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16380,11,11,'2023-02-09 10:39:10',60.179717,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16381,11,11,'2023-02-09 10:39:10',60.337723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16382,11,11,'2023-02-09 10:39:10',60.352720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16383,11,11,'2023-02-09 10:39:10',60.592721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16384,11,11,'2023-02-09 10:39:10',60.615000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16385,11,11,'2023-02-09 10:39:10',61.091722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16386,11,11,'2023-02-09 10:39:10',61.645722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16387,11,11,'2023-02-09 10:39:10',62.025724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16388,11,11,'2023-02-09 10:39:10',62.043719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16389,11,11,'2023-02-09 10:39:10',62.272726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16390,11,11,'2023-02-09 10:39:10',62.293999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16391,11,11,'2023-02-09 10:39:10',62.771727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16392,11,11,'2023-02-09 10:39:10',63.311726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16393,11,11,'2023-02-09 10:39:10',64.049723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16394,11,11,'2023-02-09 10:39:10',64.064719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16395,11,11,'2023-02-09 10:39:10',64.298725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16396,11,11,'2023-02-09 10:39:10',64.318993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16397,11,11,'2023-02-09 10:39:10',64.797727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16398,11,11,'2023-02-09 10:39:10',65.484718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16399,11,11,'2023-02-09 10:39:10',66.153724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16400,11,11,'2023-02-09 10:39:10',66.169717,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16401,11,11,'2023-02-09 10:39:10',66.417724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16402,11,11,'2023-02-09 10:39:10',66.438997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16403,11,11,'2023-02-09 10:39:10',66.916726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16404,11,11,'2023-02-09 10:39:10',67.616722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16405,11,11,'2023-02-09 10:39:10',68.313721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16406,11,11,'2023-02-09 10:39:10',68.330719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16407,11,11,'2023-02-09 10:39:10',68.563719,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16408,11,11,'2023-02-09 10:39:10',68.585003,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16409,11,11,'2023-02-09 10:39:10',69.062721,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16410,11,11,'2023-02-09 10:39:10',69.616721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16411,11,11,'2023-02-09 10:39:10',70.289721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16412,11,11,'2023-02-09 10:39:10',70.304718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16413,11,11,'2023-02-09 10:39:10',70.535726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16414,11,11,'2023-02-09 10:39:10',70.557000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16415,11,11,'2023-02-09 10:39:10',71.034718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16416,11,11,'2023-02-09 10:39:10',71.615725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16417,11,11,'2023-02-09 10:39:10',71.913721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16418,11,11,'2023-02-09 10:39:10',71.928718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16419,11,11,'2023-02-09 10:39:10',72.161718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16420,11,11,'2023-02-09 10:39:10',72.183002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16421,11,11,'2023-02-09 10:39:10',72.660720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16422,11,11,'2023-02-09 10:39:10',73.174718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16423,11,11,'2023-02-09 10:39:10',73.433719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16424,11,11,'2023-02-09 10:39:10',73.448726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16425,11,11,'2023-02-09 10:39:10',73.694722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16426,11,11,'2023-02-09 10:39:10',73.714999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16427,11,11,'2023-02-09 10:39:10',74.193723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16428,11,11,'2023-02-09 10:39:10',74.827727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16429,11,11,'2023-02-09 10:39:10',75.041727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16430,11,11,'2023-02-09 10:39:10',75.057720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16431,11,11,'2023-02-09 10:39:10',75.293727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16432,11,11,'2023-02-09 10:39:10',75.315000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16433,11,11,'2023-02-09 10:39:10',75.792719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16434,11,11,'2023-02-09 10:39:10',76.440724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16435,11,11,'2023-02-09 10:39:10',76.713725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16436,11,11,'2023-02-09 10:39:10',76.729718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16437,11,11,'2023-02-09 10:39:10',76.973722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16438,11,11,'2023-02-09 10:39:10',76.994000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16439,11,11,'2023-02-09 10:39:10',77.472724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16440,11,11,'2023-02-09 10:39:10',78.172720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16441,11,11,'2023-02-09 10:39:10',78.401727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16442,11,11,'2023-02-09 10:39:10',78.417719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16443,11,11,'2023-02-09 10:39:10',78.652721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16444,11,11,'2023-02-09 10:39:10',78.672999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16445,11,11,'2023-02-09 10:39:10',79.151723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16446,11,11,'2023-02-09 10:39:10',79.812723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16447,11,11,'2023-02-09 10:39:10',80.049726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16448,11,11,'2023-02-09 10:39:10',80.065719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16449,11,11,'2023-02-09 10:39:10',80.305720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16450,11,11,'2023-02-09 10:39:10',80.326993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16451,11,11,'2023-02-09 10:39:10',80.804721,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16452,11,11,'2023-02-09 10:39:10',81.451720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16453,11,11,'2023-02-09 10:39:10',81.609726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16454,11,11,'2023-02-09 10:39:10',81.624723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16455,11,11,'2023-02-09 10:39:10',81.864723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16456,11,11,'2023-02-09 10:39:10',81.885997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16457,11,11,'2023-02-09 10:39:10',82.363725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16458,11,11,'2023-02-09 10:39:10',83.051722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16459,11,11,'2023-02-09 10:39:10',83.273718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16460,11,11,'2023-02-09 10:39:10',83.288725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16461,11,11,'2023-02-09 10:39:10',83.517722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16462,11,11,'2023-02-09 10:39:10',83.538995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16463,11,11,'2023-02-09 10:39:10',84.016723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16464,11,11,'2023-02-09 10:39:10',84.650727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16465,11,11,'2023-02-09 10:39:10',84.873719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16466,11,11,'2023-02-09 10:39:10',84.890718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16467,11,11,'2023-02-09 10:39:10',85.130719,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16468,11,11,'2023-02-09 10:39:10',85.150996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16469,11,11,'2023-02-09 10:39:10',85.629720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16470,11,11,'2023-02-09 10:39:10',86.263724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16471,11,11,'2023-02-09 10:39:10',86.393727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16472,11,11,'2023-02-09 10:39:10',86.409720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16473,11,11,'2023-02-09 10:39:10',86.635720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16474,11,11,'2023-02-09 10:39:10',86.657999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16475,11,11,'2023-02-09 10:39:10',87.134721,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16476,11,11,'2023-02-09 10:39:10',87.808727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16477,11,11,'2023-02-09 10:39:10',87.985722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16478,11,11,'2023-02-09 10:39:10',88.002721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16479,11,11,'2023-02-09 10:39:10',88.248726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16480,11,11,'2023-02-09 10:39:10',88.270000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16481,11,11,'2023-02-09 10:39:10',88.747718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16482,11,11,'2023-02-09 10:39:10',89.435724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16483,11,11,'2023-02-09 10:39:10',89.593720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16484,11,11,'2023-02-09 10:39:10',89.608727,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16485,11,11,'2023-02-09 10:39:10',89.848718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16486,11,11,'2023-02-09 10:39:10',89.870001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16487,11,11,'2023-02-09 10:39:10',90.347719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16488,11,11,'2023-02-09 10:39:10',91.034720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16489,11,11,'2023-02-09 10:39:10',91.049727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16490,11,11,'2023-02-09 10:39:10',91.065720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16491,11,11,'2023-02-09 10:39:10',91.300721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16492,11,11,'2023-02-09 10:39:10',91.323000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16493,11,11,'2023-02-09 10:39:10',91.799723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16494,11,11,'2023-02-09 10:39:10',92.367724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16495,11,11,'2023-02-09 10:39:10',92.729722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16496,11,11,'2023-02-09 10:39:10',92.745725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16497,11,11,'2023-02-09 10:39:10',92.993722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16498,11,11,'2023-02-09 10:39:10',93.014995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16499,11,11,'2023-02-09 10:39:10',93.492723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16500,11,11,'2023-02-09 10:39:10',94.019727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16501,11,11,'2023-02-09 10:39:10',94.315722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16502,11,11,'2023-02-09 10:39:10',94.333726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16503,11,11,'2023-02-09 10:39:10',94.566727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16504,11,11,'2023-02-09 10:39:10',94.588000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16505,11,11,'2023-02-09 10:39:10',95.065718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16506,11,11,'2023-02-09 10:39:10',95.712727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16507,11,11,'2023-02-09 10:39:10',96.009718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16508,11,11,'2023-02-09 10:39:10',96.025721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16509,11,11,'2023-02-09 10:39:10',96.259727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16510,11,11,'2023-02-09 10:39:10',96.279994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16511,11,11,'2023-02-09 10:39:10',96.758718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16512,11,11,'2023-02-09 10:39:10',97.312719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16513,11,11,'2023-02-09 10:39:10',97.481718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16514,11,11,'2023-02-09 10:39:10',97.497721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16515,11,11,'2023-02-09 10:39:10',97.738727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16516,11,11,'2023-02-09 10:39:10',97.760000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16517,11,11,'2023-02-09 10:39:10',98.237719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16518,11,11,'2023-02-09 10:39:10',98.898719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16519,11,11,'2023-02-09 10:39:10',99.225724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16520,11,11,'2023-02-09 10:39:10',99.241726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16521,11,11,'2023-02-09 10:39:10',99.471719,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16522,11,11,'2023-02-09 10:39:10',99.491997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16523,11,11,'2023-02-09 10:39:10',99.970721,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16524,11,11,'2023-02-09 10:39:10',100.617720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16525,11,11,'2023-02-09 10:39:10',100.681721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16526,11,11,'2023-02-09 10:39:10',100.697723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16527,11,11,'2023-02-09 10:39:10',100.937724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16528,11,11,'2023-02-09 10:39:10',100.958997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16529,11,11,'2023-02-09 10:39:10',101.436726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16530,11,11,'2023-02-09 10:39:10',102.016726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16531,11,11,'2023-02-09 10:39:10',103.553723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16532,11,11,'2023-02-09 10:39:10',103.568720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16533,11,11,'2023-02-09 10:39:10',103.816727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16534,11,11,'2023-02-09 10:39:10',103.838000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16535,11,11,'2023-02-09 10:39:10',104.315718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16536,11,11,'2023-02-09 10:39:10',104.882724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16537,11,11,'2023-02-09 10:39:10',106.401726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16538,11,11,'2023-02-09 10:39:10',106.416723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16539,11,11,'2023-02-09 10:39:10',106.641726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16540,11,11,'2023-02-09 10:39:10',106.663000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16541,11,11,'2023-02-09 10:39:10',107.140718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16542,11,11,'2023-02-09 10:39:10',107.694718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16543,11,11,'2023-02-09 10:39:10',107.921724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16544,11,11,'2023-02-09 10:39:10',107.937726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16545,11,11,'2023-02-09 10:39:10',108.160718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16546,11,11,'2023-02-09 10:39:10',108.182002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16547,11,11,'2023-02-09 10:39:10',108.659720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16548,11,11,'2023-02-09 10:39:10',109.280718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16549,11,11,'2023-02-09 10:39:10',109.689718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16550,11,11,'2023-02-09 10:39:10',109.704725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16551,11,11,'2023-02-09 10:39:10',109.947723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16552,11,11,'2023-02-09 10:39:10',109.968001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16553,11,11,'2023-02-09 10:39:10',110.446725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16554,11,11,'2023-02-09 10:39:10',110.973719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16555,11,11,'2023-02-09 10:39:10',111.257724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16556,11,11,'2023-02-09 10:39:10',111.272721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16557,11,11,'2023-02-09 10:39:10',111.506727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16558,11,11,'2023-02-09 10:39:10',111.526995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16559,11,11,'2023-02-09 10:39:10',112.005719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16560,11,11,'2023-02-09 10:39:10',112.519717,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16561,11,11,'2023-02-09 10:39:10',112.753723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16562,11,11,'2023-02-09 10:39:10',112.768720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16563,11,11,'2023-02-09 10:39:10',113.012724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16564,11,11,'2023-02-09 10:39:10',113.033001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16565,11,11,'2023-02-09 10:39:10',113.511725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16566,11,11,'2023-02-09 10:39:10',114.118723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16567,11,11,'2023-02-09 10:39:10',114.376718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16568,11,11,'2023-02-09 10:39:10',114.392720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16569,11,11,'2023-02-09 10:39:10',114.625721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16570,11,11,'2023-02-09 10:39:10',114.645998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16571,11,11,'2023-02-09 10:39:10',115.124722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16572,11,11,'2023-02-09 10:39:10',115.824718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16573,11,11,'2023-02-09 10:39:10',116.153725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16574,11,11,'2023-02-09 10:39:10',116.169717,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16575,11,11,'2023-02-09 10:39:10',116.397719,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16576,11,11,'2023-02-09 10:39:10',116.419998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16577,11,11,'2023-02-09 10:39:10',116.896720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16578,11,11,'2023-02-09 10:39:10',117.597722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16579,11,11,'2023-02-09 10:39:10',117.769719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16580,11,11,'2023-02-09 10:39:10',117.785722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16581,11,11,'2023-02-09 10:39:10',118.010725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16582,11,11,'2023-02-09 10:39:10',118.031999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16583,11,11,'2023-02-09 10:39:10',118.509727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16584,11,11,'2023-02-09 10:39:10',119.076722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16585,11,11,'2023-02-09 10:39:10',119.704721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16586,11,11,'2023-02-09 10:39:10',119.720724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16587,11,11,'2023-02-09 10:39:10',119.943726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16588,11,11,'2023-02-09 10:39:10',119.963994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16589,11,11,'2023-02-09 10:39:10',120.442718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16590,11,11,'2023-02-09 10:39:10',121.022719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16591,11,11,'2023-02-09 10:39:10',121.600718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16592,11,11,'2023-02-09 10:39:10',121.616721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16593,11,11,'2023-02-09 10:39:10',121.849721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16594,11,11,'2023-02-09 10:39:10',121.869998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16595,11,11,'2023-02-09 10:39:10',122.348722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16596,11,11,'2023-02-09 10:39:10',122.915718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16597,11,11,'2023-02-09 10:39:10',123.185722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16598,11,11,'2023-02-09 10:39:10',123.201725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16599,11,11,'2023-02-09 10:39:10',123.434725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16600,11,11,'2023-02-09 10:39:10',123.455999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16601,11,11,'2023-02-09 10:39:10',123.933727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16602,11,11,'2023-02-09 10:39:10',124.541720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16603,11,11,'2023-02-09 10:39:10',124.768725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16604,11,11,'2023-02-09 10:39:10',124.785724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16605,11,11,'2023-02-09 10:39:10',125.008726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16606,11,11,'2023-02-09 10:39:10',125.028993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16607,11,11,'2023-02-09 10:39:10',125.507717,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16608,11,11,'2023-02-09 10:39:10',126.193723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16609,11,11,'2023-02-09 10:39:10',126.401718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16610,11,11,'2023-02-09 10:39:10',126.417721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16611,11,11,'2023-02-09 10:39:10',126.634718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16612,11,11,'2023-02-09 10:39:10',126.654000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16613,11,11,'2023-02-09 10:39:10',127.133720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16614,11,11,'2023-02-09 10:39:10',127.793724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16615,11,11,'2023-02-09 10:39:10',128.328724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16616,11,11,'2023-02-09 10:39:10',128.344727,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16617,11,11,'2023-02-09 10:39:10',128.433723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16618,11,11,'2023-02-09 10:39:10',128.454996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16619,11,11,'2023-02-09 10:39:10',128.932724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16620,11,11,'2023-02-09 10:39:10',129.632720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16621,11,11,'2023-02-09 10:39:10',130.544725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16622,11,11,'2023-02-09 10:39:10',130.560718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16623,11,11,'2023-02-09 10:39:10',130.632725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16624,11,11,'2023-02-09 10:39:10',130.653998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16625,11,11,'2023-02-09 10:39:10',131.131726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16626,11,11,'2023-02-09 10:39:10',131.818727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16627,11,11,'2023-02-09 10:39:10',132.072719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16628,11,11,'2023-02-09 10:39:10',132.088722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16629,11,11,'2023-02-09 10:39:10',132.165718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16630,11,11,'2023-02-09 10:39:10',132.187001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16631,11,11,'2023-02-09 10:39:10',132.664720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16632,11,11,'2023-02-09 10:39:10',133.337719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16633,11,11,'2023-02-09 10:39:10',133.616726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16634,11,11,'2023-02-09 10:39:10',133.632719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16635,11,11,'2023-02-09 10:39:10',133.711726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16636,11,11,'2023-02-09 10:39:10',133.733000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16637,11,11,'2023-02-09 10:39:10',134.210718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16638,11,11,'2023-02-09 10:39:10',134.830721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16639,11,11,'2023-02-09 10:39:10',135.072723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16640,11,11,'2023-02-09 10:39:10',135.088726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16641,11,11,'2023-02-09 10:39:10',135.163720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16642,11,11,'2023-02-09 10:39:10',135.184993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16643,11,11,'2023-02-09 10:39:10',135.662722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16644,11,11,'2023-02-09 10:39:10',136.336727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16645,11,11,'2023-02-09 10:39:10',136.608723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16646,11,11,'2023-02-09 10:39:10',136.624726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16647,11,11,'2023-02-09 10:39:10',136.696723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16648,11,11,'2023-02-09 10:39:10',136.717001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16649,11,11,'2023-02-09 10:39:10',137.195725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16650,11,11,'2023-02-09 10:39:10',137.789727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16651,11,11,'2023-02-09 10:39:10',138.112719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16652,11,11,'2023-02-09 10:39:10',138.128721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16653,11,11,'2023-02-09 10:39:10',138.202720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16654,11,11,'2023-02-09 10:39:10',138.223993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16655,11,11,'2023-02-09 10:39:10',138.701722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16656,11,11,'2023-02-09 10:39:10',139.388722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16657,11,11,'2023-02-09 10:39:10',139.720726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16658,11,11,'2023-02-09 10:39:10',139.736719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16659,11,11,'2023-02-09 10:39:10',139.815727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16660,11,11,'2023-02-09 10:39:10',139.835994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16661,11,11,'2023-02-09 10:39:10',140.314718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16662,11,11,'2023-02-09 10:39:10',140.841722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16663,11,11,'2023-02-09 10:39:10',141.128725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16664,11,11,'2023-02-09 10:39:10',141.144718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16665,11,11,'2023-02-09 10:39:10',141.214723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16666,11,11,'2023-02-09 10:39:10',141.235997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16667,11,11,'2023-02-09 10:39:10',141.713725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16668,11,11,'2023-02-09 10:39:10',142.414727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16669,11,11,'2023-02-09 10:39:10',142.736723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16670,11,11,'2023-02-09 10:39:10',142.752726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16671,11,11,'2023-02-09 10:39:10',142.827720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16672,11,11,'2023-02-09 10:39:10',142.848993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16673,11,11,'2023-02-09 10:39:10',143.326722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16674,11,11,'2023-02-09 10:39:10',144.013723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16675,11,11,'2023-02-09 10:39:10',144.264727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16676,11,11,'2023-02-09 10:39:10',144.280720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16677,11,11,'2023-02-09 10:39:10',144.360723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16678,11,11,'2023-02-09 10:39:10',144.381001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16679,11,11,'2023-02-09 10:39:10',144.859725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16680,11,11,'2023-02-09 10:39:10',145.506724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16681,11,11,'2023-02-09 10:39:10',145.768722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16682,11,11,'2023-02-09 10:39:10',145.784725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16683,11,11,'2023-02-09 10:39:10',145.853725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16684,11,11,'2023-02-09 10:39:10',145.874002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16685,11,11,'2023-02-09 10:39:10',146.352726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16686,11,11,'2023-02-09 10:39:10',146.985724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16687,11,11,'2023-02-09 10:39:10',147.235723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16688,11,11,'2023-02-09 10:39:10',147.254723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16689,11,11,'2023-02-09 10:39:10',147.332725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16690,11,11,'2023-02-09 10:39:10',147.353998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16691,11,11,'2023-02-09 10:39:10',147.831726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16692,11,11,'2023-02-09 10:39:10',148.345725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16693,11,11,'2023-02-09 10:39:10',148.720718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16694,11,11,'2023-02-09 10:39:10',148.736720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16695,11,11,'2023-02-09 10:39:10',148.811725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16696,11,11,'2023-02-09 10:39:10',148.832998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16697,11,11,'2023-02-09 10:39:10',149.310727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16698,11,11,'2023-02-09 10:39:10',149.824725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16699,11,11,'2023-02-09 10:39:10',150.064726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16700,11,11,'2023-02-09 10:39:10',150.080718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16701,11,11,'2023-02-09 10:39:10',150.157725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16702,11,11,'2023-02-09 10:39:10',150.178998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16703,11,11,'2023-02-09 10:39:10',150.656726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16704,11,11,'2023-02-09 10:39:10',151.330722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16705,11,11,'2023-02-09 10:39:10',151.584723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16706,11,11,'2023-02-09 10:39:10',151.600726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16707,11,11,'2023-02-09 10:39:10',151.677722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16708,11,11,'2023-02-09 10:39:10',151.698000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16709,11,11,'2023-02-09 10:39:10',152.176724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16710,11,11,'2023-02-09 10:39:10',152.823723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16711,11,11,'2023-02-09 10:39:10',153.104721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16712,11,11,'2023-02-09 10:39:10',153.120724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16713,11,11,'2023-02-09 10:39:10',153.196724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16714,11,11,'2023-02-09 10:39:10',153.217998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16715,11,11,'2023-02-09 10:39:10',153.695726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16716,11,11,'2023-02-09 10:39:10',154.356726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16717,11,11,'2023-02-09 10:39:10',154.624719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16718,11,11,'2023-02-09 10:39:10',154.640722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16719,11,11,'2023-02-09 10:39:10',154.715726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16720,11,11,'2023-02-09 10:39:10',154.737000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16721,11,11,'2023-02-09 10:39:10',155.214718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16722,11,11,'2023-02-09 10:39:10',155.849717,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16723,11,11,'2023-02-09 10:39:10',156.080726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16724,11,11,'2023-02-09 10:39:10',156.096719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16725,11,11,'2023-02-09 10:39:10',156.169722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16726,11,11,'2023-02-09 10:39:10',156.189999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16727,11,11,'2023-02-09 10:39:10',156.668723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16728,11,11,'2023-02-09 10:39:10',157.341723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16729,11,11,'2023-02-09 10:39:10',157.600724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16730,11,11,'2023-02-09 10:39:10',157.616727,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16731,11,11,'2023-02-09 10:39:10',157.688724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16732,11,11,'2023-02-09 10:39:10',157.709997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16733,11,11,'2023-02-09 10:39:10',158.187725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16734,11,11,'2023-02-09 10:39:10',158.834724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16735,11,11,'2023-02-09 10:39:10',159.496720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16736,11,11,'2023-02-09 10:39:10',159.512723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16737,11,11,'2023-02-09 10:39:10',159.594718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16738,11,11,'2023-02-09 10:39:10',159.614996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16739,11,11,'2023-02-09 10:39:10',160.093720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16740,11,11,'2023-02-09 10:39:10',160.793726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16741,11,11,'2023-02-09 10:39:10',161.024725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16742,11,11,'2023-02-09 10:39:10',161.040717,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16743,11,11,'2023-02-09 10:39:10',161.113720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16744,11,11,'2023-02-09 10:39:10',161.134994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16745,11,11,'2023-02-09 10:39:10',161.612722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16746,11,11,'2023-02-09 10:39:10',162.206724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16747,11,11,'2023-02-09 10:39:10',162.488718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16748,11,11,'2023-02-09 10:39:10',162.504721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16749,11,11,'2023-02-09 10:39:10',162.579725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16750,11,11,'2023-02-09 10:39:10',162.600998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16751,11,11,'2023-02-09 10:39:10',163.078727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16752,11,11,'2023-02-09 10:39:10',163.765718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16753,11,11,'2023-02-09 10:39:10',164.008726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16754,11,11,'2023-02-09 10:39:10',164.024718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16755,11,11,'2023-02-09 10:39:10',164.098717,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16756,11,11,'2023-02-09 10:39:10',164.120001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16757,11,11,'2023-02-09 10:39:10',164.597719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16758,11,11,'2023-02-09 10:39:10',165.165720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16759,11,11,'2023-02-09 10:39:10',165.424721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16760,11,11,'2023-02-09 10:39:10',165.440724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16761,11,11,'2023-02-09 10:39:10',165.512721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16762,11,11,'2023-02-09 10:39:10',165.532998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16763,11,11,'2023-02-09 10:39:10',166.011722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16764,11,11,'2023-02-09 10:39:10',166.671727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16765,11,11,'2023-02-09 10:39:10',166.984720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16766,11,11,'2023-02-09 10:39:10',167.000723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16767,11,11,'2023-02-09 10:39:10',167.071725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16768,11,11,'2023-02-09 10:39:10',167.092998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16769,11,11,'2023-02-09 10:39:10',167.570726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16770,11,11,'2023-02-09 10:39:10',168.111721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16771,11,11,'2023-02-09 10:39:10',168.416718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16772,11,11,'2023-02-09 10:39:10',168.432721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16773,11,11,'2023-02-09 10:39:10',168.510723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16774,11,11,'2023-02-09 10:39:10',168.531996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16775,11,11,'2023-02-09 10:39:10',169.009725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16776,11,11,'2023-02-09 10:39:10',169.657719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16777,11,11,'2023-02-09 10:39:10',169.952719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16778,11,11,'2023-02-09 10:39:10',169.968722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16779,11,11,'2023-02-09 10:39:10',170.043726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16780,11,11,'2023-02-09 10:39:10',170.064999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16781,11,11,'2023-02-09 10:39:10',170.542718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16782,11,11,'2023-02-09 10:39:10',171.069721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16783,11,11,'2023-02-09 10:39:10',171.344725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16784,11,11,'2023-02-09 10:39:10',171.360718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16785,11,11,'2023-02-09 10:39:10',171.429717,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16786,11,11,'2023-02-09 10:39:10',171.449995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16787,11,11,'2023-02-09 10:39:10',171.928719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16788,11,11,'2023-02-09 10:39:10',172.588723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16789,11,11,'2023-02-09 10:39:10',172.840724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16790,11,11,'2023-02-09 10:39:10',172.856726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16791,11,11,'2023-02-09 10:39:10',172.935724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16792,11,11,'2023-02-09 10:39:10',172.956997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16793,11,11,'2023-02-09 10:39:10',173.434726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16794,11,11,'2023-02-09 10:39:10',174.055724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16795,11,11,'2023-02-09 10:39:10',174.296721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16796,11,11,'2023-02-09 10:39:10',174.312723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16797,11,11,'2023-02-09 10:39:10',174.388724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16798,11,11,'2023-02-09 10:39:10',174.409001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16799,11,11,'2023-02-09 10:39:10',174.887725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16800,11,11,'2023-02-09 10:39:10',175.414719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16801,11,11,'2023-02-09 10:39:10',175.712726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16802,11,11,'2023-02-09 10:39:10',175.755997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16803,12,12,'2023-02-09 10:46:31',1.205003,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16804,12,12,'2023-02-09 10:46:31',1.386625,0.000000,NULL,'2',NULL,NULL,'SESS',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16805,12,12,'2023-02-09 10:46:31',1.435619,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16806,12,12,'2023-02-09 10:46:31',1.437620,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16807,12,12,'2023-02-09 10:46:31',1.438616,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16808,12,12,'2023-02-09 10:46:31',1.439622,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16809,12,12,'2023-02-09 10:46:31',2.537000,0.000000,NULL,'5',NULL,NULL,'boundary',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16810,12,12,'2023-02-09 10:46:31',3.668626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16811,12,12,'2023-02-09 10:46:31',5.476997,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16812,12,12,'2023-02-09 10:46:31',9.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16813,12,12,'2023-02-09 10:46:31',9.104997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16814,12,12,'2023-02-09 10:46:31',9.677626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16815,12,12,'2023-02-09 10:46:31',9.696626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16816,12,12,'2023-02-09 10:46:31',10.105626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16817,12,12,'2023-02-09 10:46:31',10.124998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16818,12,12,'2023-02-09 10:46:31',10.698622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16819,12,12,'2023-02-09 10:46:31',10.710621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16820,12,12,'2023-02-09 10:46:31',11.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16821,12,12,'2023-02-09 10:46:31',11.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16822,12,12,'2023-02-09 10:46:31',11.716621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16823,12,12,'2023-02-09 10:46:31',11.727624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16824,12,12,'2023-02-09 10:46:31',12.145617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16825,12,12,'2023-02-09 10:46:31',12.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16826,12,12,'2023-02-09 10:46:31',12.737617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16827,12,12,'2023-02-09 10:46:31',12.748621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16828,12,12,'2023-02-09 10:46:31',13.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16829,12,12,'2023-02-09 10:46:31',13.185995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16830,12,12,'2023-02-09 10:46:31',13.755626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16831,12,12,'2023-02-09 10:46:31',13.766620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16832,12,12,'2023-02-09 10:46:31',14.185618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16833,12,12,'2023-02-09 10:46:31',14.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16834,12,12,'2023-02-09 10:46:31',14.776622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16835,12,12,'2023-02-09 10:46:31',14.787626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16836,12,12,'2023-02-09 10:46:31',15.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16837,12,12,'2023-02-09 10:46:31',15.225000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16838,12,12,'2023-02-09 10:46:31',15.794621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16839,12,12,'2023-02-09 10:46:31',15.805625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16840,12,12,'2023-02-09 10:46:31',16.225619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16841,12,12,'2023-02-09 10:46:31',16.245001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16842,12,12,'2023-02-09 10:46:31',16.815617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16843,12,12,'2023-02-09 10:46:31',16.827617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16844,12,12,'2023-02-09 10:46:31',17.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16845,12,12,'2023-02-09 10:46:31',17.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16846,12,12,'2023-02-09 10:46:31',17.838625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16847,12,12,'2023-02-09 10:46:31',17.848623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16848,12,12,'2023-02-09 10:46:31',18.265620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16849,12,12,'2023-02-09 10:46:31',18.285002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16850,12,12,'2023-02-09 10:46:31',18.854623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16851,12,12,'2023-02-09 10:46:31',18.865616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16852,12,12,'2023-02-09 10:46:31',19.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16853,12,12,'2023-02-09 10:46:31',19.341001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16854,12,12,'2023-02-09 10:46:31',19.877620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16855,12,12,'2023-02-09 10:46:31',19.888624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16856,12,12,'2023-02-09 10:46:31',20.305621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16857,12,12,'2023-02-09 10:46:31',20.324993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16858,12,12,'2023-02-09 10:46:31',20.898617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16859,12,12,'2023-02-09 10:46:31',20.909621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16860,12,12,'2023-02-09 10:46:31',21.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16861,12,12,'2023-02-09 10:46:31',21.344993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16862,12,12,'2023-02-09 10:46:31',21.916626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16863,12,12,'2023-02-09 10:46:31',21.927619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16864,12,12,'2023-02-09 10:46:31',22.345622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16865,12,12,'2023-02-09 10:46:31',22.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16866,12,12,'2023-02-09 10:46:31',22.934625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16867,12,12,'2023-02-09 10:46:31',22.945618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16868,12,12,'2023-02-09 10:46:31',23.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16869,12,12,'2023-02-09 10:46:31',23.384994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16870,12,12,'2023-02-09 10:46:31',23.955621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16871,12,12,'2023-02-09 10:46:31',23.966625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16872,12,12,'2023-02-09 10:46:31',24.385623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16873,12,12,'2023-02-09 10:46:31',24.440993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16874,12,12,'2023-02-09 10:46:31',24.977623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16875,12,12,'2023-02-09 10:46:31',24.988617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16876,12,12,'2023-02-09 10:46:31',25.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16877,12,12,'2023-02-09 10:46:31',25.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16878,12,12,'2023-02-09 10:46:31',25.994626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16879,12,12,'2023-02-09 10:46:31',26.005620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16880,12,12,'2023-02-09 10:46:31',26.425624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16881,12,12,'2023-02-09 10:46:31',26.444996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16882,12,12,'2023-02-09 10:46:31',27.017624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16883,12,12,'2023-02-09 10:46:31',27.028618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16884,12,12,'2023-02-09 10:46:31',27.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16885,12,12,'2023-02-09 10:46:31',27.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16886,12,12,'2023-02-09 10:46:31',28.038620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16887,12,12,'2023-02-09 10:46:31',28.049624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16888,12,12,'2023-02-09 10:46:31',28.465625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16889,12,12,'2023-02-09 10:46:31',28.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16890,12,12,'2023-02-09 10:46:31',29.056619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16891,12,12,'2023-02-09 10:46:31',29.068619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16892,12,12,'2023-02-09 10:46:31',29.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16893,12,12,'2023-02-09 10:46:31',29.504997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16894,12,12,'2023-02-09 10:46:31',30.077625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16895,12,12,'2023-02-09 10:46:31',30.089625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16896,12,12,'2023-02-09 10:46:31',30.505626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16897,12,12,'2023-02-09 10:46:31',30.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16898,12,12,'2023-02-09 10:46:31',31.095624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16899,12,12,'2023-02-09 10:46:31',31.105622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16900,12,12,'2023-02-09 10:46:31',31.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16901,12,12,'2023-02-09 10:46:31',31.544998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16902,12,12,'2023-02-09 10:46:31',32.116621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16903,12,12,'2023-02-09 10:46:31',32.127624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16904,12,12,'2023-02-09 10:46:31',32.545617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16905,12,12,'2023-02-09 10:46:31',32.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16906,12,12,'2023-02-09 10:46:31',33.138623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16907,12,12,'2023-02-09 10:46:31',33.149627,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16908,12,12,'2023-02-09 10:46:31',33.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16909,12,12,'2023-02-09 10:46:31',33.620998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16910,12,12,'2023-02-09 10:46:31',34.155626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16911,12,12,'2023-02-09 10:46:31',34.166620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16912,12,12,'2023-02-09 10:46:31',34.585618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16913,12,12,'2023-02-09 10:46:31',34.605000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16914,12,12,'2023-02-09 10:46:31',35.177618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16915,12,12,'2023-02-09 10:46:31',35.188622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16916,12,12,'2023-02-09 10:46:31',35.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16917,12,12,'2023-02-09 10:46:31',35.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16918,12,12,'2023-02-09 10:46:31',36.194621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16919,12,12,'2023-02-09 10:46:31',36.205625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16920,12,12,'2023-02-09 10:46:31',36.625619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16921,12,12,'2023-02-09 10:46:31',36.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16922,12,12,'2023-02-09 10:46:31',37.217619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16923,12,12,'2023-02-09 10:46:31',37.228623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16924,12,12,'2023-02-09 10:46:31',37.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16925,12,12,'2023-02-09 10:46:31',37.665001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16926,12,12,'2023-02-09 10:46:31',38.238625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16927,12,12,'2023-02-09 10:46:31',38.249619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16928,12,12,'2023-02-09 10:46:31',38.665620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16929,12,12,'2023-02-09 10:46:31',38.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16930,12,12,'2023-02-09 10:46:31',39.256624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16931,12,12,'2023-02-09 10:46:31',39.267618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16932,12,12,'2023-02-09 10:46:31',39.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16933,12,12,'2023-02-09 10:46:31',39.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16934,12,12,'2023-02-09 10:46:31',40.278616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16935,12,12,'2023-02-09 10:46:31',40.289620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16936,12,12,'2023-02-09 10:46:31',40.705621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16937,12,12,'2023-02-09 10:46:31',40.738994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16938,12,12,'2023-02-09 10:46:31',41.295619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16939,12,12,'2023-02-09 10:46:31',41.306623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16940,12,12,'2023-02-09 10:46:31',41.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16941,12,12,'2023-02-09 10:46:31',41.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16942,12,12,'2023-02-09 10:46:31',42.317621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16943,12,12,'2023-02-09 10:46:31',42.328625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16944,12,12,'2023-02-09 10:46:31',42.745622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16945,12,12,'2023-02-09 10:46:31',42.764994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16946,12,12,'2023-02-09 10:46:31',43.334625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16947,12,12,'2023-02-09 10:46:31',43.345618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16948,12,12,'2023-02-09 10:46:31',43.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16949,12,12,'2023-02-09 10:46:31',43.784994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16950,12,12,'2023-02-09 10:46:31',44.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16951,12,12,'2023-02-09 10:46:31',44.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16952,12,12,'2023-02-09 10:46:31',44.785623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16953,12,12,'2023-02-09 10:46:31',44.840993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16954,12,12,'2023-02-09 10:46:31',45.378619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16955,12,12,'2023-02-09 10:46:31',45.389623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16956,12,12,'2023-02-09 10:46:31',45.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16957,12,12,'2023-02-09 10:46:31',45.824995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16958,12,12,'2023-02-09 10:46:31',46.396618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16959,12,12,'2023-02-09 10:46:31',46.406626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16960,12,12,'2023-02-09 10:46:31',46.825624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16961,12,12,'2023-02-09 10:46:31',46.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16962,12,12,'2023-02-09 10:46:31',47.417624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16963,12,12,'2023-02-09 10:46:31',47.428618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16964,12,12,'2023-02-09 10:46:31',47.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16965,12,12,'2023-02-09 10:46:31',47.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16966,12,12,'2023-02-09 10:46:31',48.435623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16967,12,12,'2023-02-09 10:46:31',48.446617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16968,12,12,'2023-02-09 10:46:31',48.865625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16969,12,12,'2023-02-09 10:46:31',48.884997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16970,12,12,'2023-02-09 10:46:31',49.456619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16971,12,12,'2023-02-09 10:46:31',49.467623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16972,12,12,'2023-02-09 10:46:31',49.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16973,12,12,'2023-02-09 10:46:31',49.940996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16974,12,12,'2023-02-09 10:46:31',50.478621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16975,12,12,'2023-02-09 10:46:31',50.489625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16976,12,12,'2023-02-09 10:46:31',50.905626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16977,12,12,'2023-02-09 10:46:31',50.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16978,12,12,'2023-02-09 10:46:31',51.495624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16979,12,12,'2023-02-09 10:46:31',51.506618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16980,12,12,'2023-02-09 10:46:31',51.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16981,12,12,'2023-02-09 10:46:31',51.958999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16982,12,12,'2023-02-09 10:46:31',52.517616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16983,12,12,'2023-02-09 10:46:31',52.529626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16984,12,12,'2023-02-09 10:46:31',52.945617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16985,12,12,'2023-02-09 10:46:31',52.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16986,12,12,'2023-02-09 10:46:31',53.534620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16987,12,12,'2023-02-09 10:46:31',53.545623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16988,12,12,'2023-02-09 10:46:31',53.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16989,12,12,'2023-02-09 10:46:31',53.984999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16990,12,12,'2023-02-09 10:46:31',54.556622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16991,12,12,'2023-02-09 10:46:31',54.567625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16992,12,12,'2023-02-09 10:46:31',54.985618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16993,12,12,'2023-02-09 10:46:31',55.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16994,12,12,'2023-02-09 10:46:31',55.577618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16995,12,12,'2023-02-09 10:46:31',55.588622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16996,12,12,'2023-02-09 10:46:31',56.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16997,12,12,'2023-02-09 10:46:31',56.060999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16998,12,12,'2023-02-09 10:46:31',56.595617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16999,12,12,'2023-02-09 10:46:31',56.606621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17000,12,12,'2023-02-09 10:46:31',57.025619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17001,12,12,'2023-02-09 10:46:31',57.045001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17002,12,12,'2023-02-09 10:46:31',57.618625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17003,12,12,'2023-02-09 10:46:31',57.628623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17004,12,12,'2023-02-09 10:46:31',58.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17005,12,12,'2023-02-09 10:46:31',58.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17006,12,12,'2023-02-09 10:46:31',58.635618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17007,12,12,'2023-02-09 10:46:31',58.645626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17008,12,12,'2023-02-09 10:46:31',59.065620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17009,12,12,'2023-02-09 10:46:31',59.085002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17010,12,12,'2023-02-09 10:46:31',59.657620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17011,12,12,'2023-02-09 10:46:31',59.668624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17012,12,12,'2023-02-09 10:46:31',60.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17013,12,12,'2023-02-09 10:46:31',60.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17014,12,12,'2023-02-09 10:46:31',60.678626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17015,12,12,'2023-02-09 10:46:31',60.689620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17016,12,12,'2023-02-09 10:46:31',61.105621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17017,12,12,'2023-02-09 10:46:31',61.161001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17018,12,12,'2023-02-09 10:46:31',61.696625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17019,12,12,'2023-02-09 10:46:31',61.707619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17020,12,12,'2023-02-09 10:46:31',62.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17021,12,12,'2023-02-09 10:46:31',62.144993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17022,12,12,'2023-02-09 10:46:31',62.717621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17023,12,12,'2023-02-09 10:46:31',62.728625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17024,12,12,'2023-02-09 10:46:31',63.145622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17025,12,12,'2023-02-09 10:46:31',63.164994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17026,12,12,'2023-02-09 10:46:31',63.736626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17027,12,12,'2023-02-09 10:46:31',63.747620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17028,12,12,'2023-02-09 10:46:31',64.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17029,12,12,'2023-02-09 10:46:31',64.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17030,12,12,'2023-02-09 10:46:31',64.757622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17031,12,12,'2023-02-09 10:46:31',64.768626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17032,12,12,'2023-02-09 10:46:31',65.185623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17033,12,12,'2023-02-09 10:46:31',65.204995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17034,12,12,'2023-02-09 10:46:31',65.775621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17035,12,12,'2023-02-09 10:46:31',65.785619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17036,12,12,'2023-02-09 10:46:31',66.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17037,12,12,'2023-02-09 10:46:31',66.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17038,12,12,'2023-02-09 10:46:31',66.796618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17039,12,12,'2023-02-09 10:46:31',66.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17040,12,12,'2023-02-09 10:46:31',67.225624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17041,12,12,'2023-02-09 10:46:31',67.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17042,12,12,'2023-02-09 10:46:31',67.818620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17043,12,12,'2023-02-09 10:46:31',67.829624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17044,12,12,'2023-02-09 10:46:31',68.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17045,12,12,'2023-02-09 10:46:31',68.278997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17046,12,12,'2023-02-09 10:46:31',68.835623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17047,12,12,'2023-02-09 10:46:31',68.846617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17048,12,12,'2023-02-09 10:46:31',69.265625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17049,12,12,'2023-02-09 10:46:31',69.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17050,12,12,'2023-02-09 10:46:31',69.857625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17051,12,12,'2023-02-09 10:46:31',69.868619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17052,12,12,'2023-02-09 10:46:31',70.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17053,12,12,'2023-02-09 10:46:31',70.304997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17054,12,12,'2023-02-09 10:46:31',70.874618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17055,12,12,'2023-02-09 10:46:31',70.885622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17056,12,12,'2023-02-09 10:46:31',71.305626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17057,12,12,'2023-02-09 10:46:31',71.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17058,12,12,'2023-02-09 10:46:31',71.896620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17059,12,12,'2023-02-09 10:46:31',71.907624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17060,12,12,'2023-02-09 10:46:31',72.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17061,12,12,'2023-02-09 10:46:31',72.380997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17062,12,12,'2023-02-09 10:46:31',72.915625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17063,12,12,'2023-02-09 10:46:31',72.925623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17064,12,12,'2023-02-09 10:46:31',73.345617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17065,12,12,'2023-02-09 10:46:31',73.364999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17066,12,12,'2023-02-09 10:46:31',73.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17067,12,12,'2023-02-09 10:46:31',73.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17068,12,12,'2023-02-09 10:46:31',74.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17069,12,12,'2023-02-09 10:46:31',74.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17070,12,12,'2023-02-09 10:46:31',74.958623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17071,12,12,'2023-02-09 10:46:31',74.969617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17072,12,12,'2023-02-09 10:46:31',75.385618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17073,12,12,'2023-02-09 10:46:31',75.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17074,12,12,'2023-02-09 10:46:31',75.975626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17075,12,12,'2023-02-09 10:46:31',75.986620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17076,12,12,'2023-02-09 10:46:31',76.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17077,12,12,'2023-02-09 10:46:31',76.425000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17078,12,12,'2023-02-09 10:46:31',76.997618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17079,12,12,'2023-02-09 10:46:31',77.008622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17080,12,12,'2023-02-09 10:46:31',77.425619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17081,12,12,'2023-02-09 10:46:31',77.445001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17082,12,12,'2023-02-09 10:46:31',78.018625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17083,12,12,'2023-02-09 10:46:31',78.029618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17084,12,12,'2023-02-09 10:46:31',78.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17085,12,12,'2023-02-09 10:46:31',78.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17086,12,12,'2023-02-09 10:46:31',79.036624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17087,12,12,'2023-02-09 10:46:31',79.047617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17088,12,12,'2023-02-09 10:46:31',79.465620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17089,12,12,'2023-02-09 10:46:31',79.521000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17090,12,12,'2023-02-09 10:46:31',80.057620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17091,12,12,'2023-02-09 10:46:31',80.068624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17092,12,12,'2023-02-09 10:46:31',80.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17093,12,12,'2023-02-09 10:46:31',80.505002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17094,12,12,'2023-02-09 10:46:31',81.075619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17095,12,12,'2023-02-09 10:46:31',81.086623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17096,12,12,'2023-02-09 10:46:31',81.505621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17097,12,12,'2023-02-09 10:46:31',81.525003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17098,12,12,'2023-02-09 10:46:31',82.096625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17099,12,12,'2023-02-09 10:46:31',82.108625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17100,12,12,'2023-02-09 10:46:31',82.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17101,12,12,'2023-02-09 10:46:31',82.544993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17102,12,12,'2023-02-09 10:46:31',83.115620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17103,12,12,'2023-02-09 10:46:31',83.126624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17104,12,12,'2023-02-09 10:46:31',83.545622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17105,12,12,'2023-02-09 10:46:31',83.564994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17106,12,12,'2023-02-09 10:46:31',84.136626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17107,12,12,'2023-02-09 10:46:31',84.147620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17108,12,12,'2023-02-09 10:46:31',84.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17109,12,12,'2023-02-09 10:46:31',84.598995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17110,12,12,'2023-02-09 10:46:31',85.158618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17111,12,12,'2023-02-09 10:46:31',85.168626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17112,12,12,'2023-02-09 10:46:31',85.585623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17113,12,12,'2023-02-09 10:46:31',85.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17114,12,12,'2023-02-09 10:46:31',86.175621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17115,12,12,'2023-02-09 10:46:31',86.186625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17116,12,12,'2023-02-09 10:46:31',86.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17117,12,12,'2023-02-09 10:46:31',86.624995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17118,12,12,'2023-02-09 10:46:31',87.197623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17119,12,12,'2023-02-09 10:46:31',87.208617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17120,12,12,'2023-02-09 10:46:31',87.625624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17121,12,12,'2023-02-09 10:46:31',87.680994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17122,12,12,'2023-02-09 10:46:31',88.214617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17123,12,12,'2023-02-09 10:46:31',88.225620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17124,12,12,'2023-02-09 10:46:31',88.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17125,12,12,'2023-02-09 10:46:31',88.664996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17126,12,12,'2023-02-09 10:46:31',89.236619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17127,12,12,'2023-02-09 10:46:31',89.247622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17128,12,12,'2023-02-09 10:46:31',89.665625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17129,12,12,'2023-02-09 10:46:31',89.684997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17130,12,12,'2023-02-09 10:46:31',90.254618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17131,12,12,'2023-02-09 10:46:31',90.265621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17132,12,12,'2023-02-09 10:46:31',90.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17133,12,12,'2023-02-09 10:46:31',90.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17134,12,12,'2023-02-09 10:46:31',91.275624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17135,12,12,'2023-02-09 10:46:31',91.286618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17136,12,12,'2023-02-09 10:46:31',91.705626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17137,12,12,'2023-02-09 10:46:31',91.724998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17138,12,12,'2023-02-09 10:46:31',92.297626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17139,12,12,'2023-02-09 10:46:31',92.309626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17140,12,12,'2023-02-09 10:46:31',92.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17141,12,12,'2023-02-09 10:46:31',92.744998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17142,12,12,'2023-02-09 10:46:31',93.315625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17143,12,12,'2023-02-09 10:46:31',93.326619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17144,12,12,'2023-02-09 10:46:31',93.745617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17145,12,12,'2023-02-09 10:46:31',93.800997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17146,12,12,'2023-02-09 10:46:31',94.337617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17147,12,12,'2023-02-09 10:46:31',94.348621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17148,12,12,'2023-02-09 10:46:31',94.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17149,12,12,'2023-02-09 10:46:31',94.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17150,12,12,'2023-02-09 10:46:31',95.358623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17151,12,12,'2023-02-09 10:46:31',95.369617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17152,12,12,'2023-02-09 10:46:31',95.785618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17153,12,12,'2023-02-09 10:46:31',95.805996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17154,12,12,'2023-02-09 10:46:31',96.376622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17155,12,12,'2023-02-09 10:46:31',96.387626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17156,12,12,'2023-02-09 10:46:31',96.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17157,12,12,'2023-02-09 10:46:31',96.825000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17158,12,12,'2023-02-09 10:46:31',97.397618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17159,12,12,'2023-02-09 10:46:31',97.408622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17160,12,12,'2023-02-09 10:46:31',97.825619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17161,12,12,'2023-02-09 10:46:31',97.845001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17162,12,12,'2023-02-09 10:46:31',98.415617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17163,12,12,'2023-02-09 10:46:31',98.426621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17164,12,12,'2023-02-09 10:46:31',98.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17165,12,12,'2023-02-09 10:46:31',98.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17166,12,12,'2023-02-09 10:46:31',99.436624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17167,12,12,'2023-02-09 10:46:31',99.447617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17168,12,12,'2023-02-09 10:46:31',99.865620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17169,12,12,'2023-02-09 10:46:31',99.921000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17170,12,12,'2023-02-09 10:46:31',100.454623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17171,12,12,'2023-02-09 10:46:31',100.465616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17172,12,12,'2023-02-09 10:46:31',100.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17173,12,12,'2023-02-09 10:46:31',100.905002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17174,12,12,'2023-02-09 10:46:31',101.475619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17175,12,12,'2023-02-09 10:46:31',101.488624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17176,12,12,'2023-02-09 10:46:31',101.905621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17177,12,12,'2023-02-09 10:46:31',101.924993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17178,12,12,'2023-02-09 10:46:31',102.498617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17179,12,12,'2023-02-09 10:46:31',102.508625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17180,12,12,'2023-02-09 10:46:31',102.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17181,12,12,'2023-02-09 10:46:31',102.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17182,12,12,'2023-02-09 10:46:31',103.515620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17183,12,12,'2023-02-09 10:46:31',103.526624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17184,12,12,'2023-02-09 10:46:31',103.945622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17185,12,12,'2023-02-09 10:46:31',103.964994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17186,12,12,'2023-02-09 10:46:31',104.537622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17187,12,12,'2023-02-09 10:46:31',104.548626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17188,12,12,'2023-02-09 10:46:31',104.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17189,12,12,'2023-02-09 10:46:31',104.984994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17190,12,12,'2023-02-09 10:46:31',105.558618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17191,12,12,'2023-02-09 10:46:31',105.569622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17192,12,12,'2023-02-09 10:46:31',105.985623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17193,12,12,'2023-02-09 10:46:31',106.004995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17194,12,12,'2023-02-09 10:46:31',106.576617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17195,12,12,'2023-02-09 10:46:31',106.587621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17196,12,12,'2023-02-09 10:46:31',107.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17197,12,12,'2023-02-09 10:46:31',107.026001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17198,12,12,'2023-02-09 10:46:31',107.594626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17199,12,12,'2023-02-09 10:46:31',107.605620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17200,12,12,'2023-02-09 10:46:31',108.025624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17201,12,12,'2023-02-09 10:46:31',108.080994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17202,12,12,'2023-02-09 10:46:31',108.615622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17203,12,12,'2023-02-09 10:46:31',108.626626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17204,12,12,'2023-02-09 10:46:31',109.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17205,12,12,'2023-02-09 10:46:31',109.064996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17206,12,12,'2023-02-09 10:46:31',109.638620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17207,12,12,'2023-02-09 10:46:31',109.648618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17208,12,12,'2023-02-09 10:46:31',110.065625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17209,12,12,'2023-02-09 10:46:31',110.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17210,12,12,'2023-02-09 10:46:31',110.655623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17211,12,12,'2023-02-09 10:46:31',110.666617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17212,12,12,'2023-02-09 10:46:31',111.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17213,12,12,'2023-02-09 10:46:31',111.104997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17214,12,12,'2023-02-09 10:46:31',111.677625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17215,12,12,'2023-02-09 10:46:31',111.685622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17216,12,12,'2023-02-09 10:46:31',112.105626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17217,12,12,'2023-02-09 10:46:31',112.138999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17218,12,12,'2023-02-09 10:46:31',112.698622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17219,12,12,'2023-02-09 10:46:31',112.711617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17220,12,12,'2023-02-09 10:46:31',113.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17221,12,12,'2023-02-09 10:46:31',113.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17222,12,12,'2023-02-09 10:46:31',113.716621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17223,12,12,'2023-02-09 10:46:31',113.727624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17224,12,12,'2023-02-09 10:46:31',114.145627,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17225,12,12,'2023-02-09 10:46:31',114.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17226,12,12,'2023-02-09 10:46:31',114.737617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17227,12,12,'2023-02-09 10:46:31',114.748621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17228,12,12,'2023-02-09 10:46:31',115.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17229,12,12,'2023-02-09 10:46:31',115.220998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17230,12,12,'2023-02-09 10:46:31',115.755626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17231,12,12,'2023-02-09 10:46:31',115.766620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17232,12,12,'2023-02-09 10:46:31',116.185618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17233,12,12,'2023-02-09 10:46:31',116.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17234,12,12,'2023-02-09 10:46:31',116.776622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17235,12,12,'2023-02-09 10:46:31',116.787626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17236,12,12,'2023-02-09 10:46:31',117.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17237,12,12,'2023-02-09 10:46:31',117.225000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17238,12,12,'2023-02-09 10:46:31',117.794621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17239,12,12,'2023-02-09 10:46:31',117.805625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17240,12,12,'2023-02-09 10:46:31',118.225619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17241,12,12,'2023-02-09 10:46:31',118.245001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17242,12,12,'2023-02-09 10:46:31',118.815617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17243,12,12,'2023-02-09 10:46:31',118.826621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17244,12,12,'2023-02-09 10:46:31',119.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17245,12,12,'2023-02-09 10:46:31',119.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17246,12,12,'2023-02-09 10:46:31',119.838625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17247,12,12,'2023-02-09 10:46:31',119.849619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17248,12,12,'2023-02-09 10:46:31',120.265620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17249,12,12,'2023-02-09 10:46:31',120.321000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17250,12,12,'2023-02-09 10:46:31',120.855618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17251,12,12,'2023-02-09 10:46:31',120.865626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17252,12,12,'2023-02-09 10:46:31',121.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17253,12,12,'2023-02-09 10:46:31',121.305002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17254,12,12,'2023-02-09 10:46:31',121.877620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17255,12,12,'2023-02-09 10:46:31',121.888624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17256,12,12,'2023-02-09 10:46:31',122.305621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17257,12,12,'2023-02-09 10:46:31',122.325003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17258,12,12,'2023-02-09 10:46:31',122.898617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17259,12,12,'2023-02-09 10:46:31',122.909620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17260,12,12,'2023-02-09 10:46:31',123.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17261,12,12,'2023-02-09 10:46:31',123.345999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17262,12,12,'2023-02-09 10:46:31',123.916626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17263,12,12,'2023-02-09 10:46:31',123.927619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17264,12,12,'2023-02-09 10:46:31',124.345622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17265,12,12,'2023-02-09 10:46:31',124.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17266,12,12,'2023-02-09 10:46:31',124.934625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17267,12,12,'2023-02-09 10:46:31',124.945618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17268,12,12,'2023-02-09 10:46:31',125.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17269,12,12,'2023-02-09 10:46:31',125.384994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17270,12,12,'2023-02-09 10:46:31',125.955621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17271,12,12,'2023-02-09 10:46:31',125.966625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17272,12,12,'2023-02-09 10:46:31',126.385623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17273,12,12,'2023-02-09 10:46:31',126.404995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17274,12,12,'2023-02-09 10:46:31',126.978619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17275,12,12,'2023-02-09 10:46:31',126.989622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17276,12,12,'2023-02-09 10:46:31',127.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17277,12,12,'2023-02-09 10:46:31',127.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17278,12,12,'2023-02-09 10:46:31',127.994626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17279,12,12,'2023-02-09 10:46:31',128.005620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17280,12,12,'2023-02-09 10:46:31',128.425624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17281,12,12,'2023-02-09 10:46:31',128.480994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17282,12,12,'2023-02-09 10:46:31',129.017624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17283,12,12,'2023-02-09 10:46:31',129.028618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17284,12,12,'2023-02-09 10:46:31',129.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17285,12,12,'2023-02-09 10:46:31',129.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17286,12,12,'2023-02-09 10:46:31',130.038620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17287,12,12,'2023-02-09 10:46:31',130.049624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17288,12,12,'2023-02-09 10:46:31',130.465625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17289,12,12,'2023-02-09 10:46:31',130.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17290,12,12,'2023-02-09 10:46:31',131.056619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17291,12,12,'2023-02-09 10:46:31',131.067623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17292,12,12,'2023-02-09 10:46:31',131.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17293,12,12,'2023-02-09 10:46:31',131.504997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17294,12,12,'2023-02-09 10:46:31',132.077625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17295,12,12,'2023-02-09 10:46:31',132.088619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17296,12,12,'2023-02-09 10:46:31',132.505626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17297,12,12,'2023-02-09 10:46:31',132.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17298,12,12,'2023-02-09 10:46:31',133.095624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17299,12,12,'2023-02-09 10:46:31',133.106618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17300,12,12,'2023-02-09 10:46:31',133.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17301,12,12,'2023-02-09 10:46:31',133.581993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17302,12,12,'2023-02-09 10:46:31',134.116621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17303,12,12,'2023-02-09 10:46:31',134.127624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17304,12,12,'2023-02-09 10:46:31',134.545616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17305,12,12,'2023-02-09 10:46:31',134.565995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17306,12,12,'2023-02-09 10:46:31',135.134620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17307,12,12,'2023-02-09 10:46:31',135.145623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17308,12,12,'2023-02-09 10:46:31',135.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17309,12,12,'2023-02-09 10:46:31',135.584999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17310,12,12,'2023-02-09 10:46:31',136.155626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17311,12,12,'2023-02-09 10:46:31',136.166620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17312,12,12,'2023-02-09 10:46:31',136.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17313,12,12,'2023-02-09 10:46:31',136.605000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17314,12,12,'2023-02-09 10:46:31',137.178624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17315,12,12,'2023-02-09 10:46:31',137.189617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17316,12,12,'2023-02-09 10:46:31',137.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17317,12,12,'2023-02-09 10:46:31',137.660999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17318,12,12,'2023-02-09 10:46:31',138.195617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17319,12,12,'2023-02-09 10:46:31',138.206621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17320,12,12,'2023-02-09 10:46:31',138.625619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17321,12,12,'2023-02-09 10:46:31',138.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17322,12,12,'2023-02-09 10:46:31',139.217619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17323,12,12,'2023-02-09 10:46:31',139.228623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17324,12,12,'2023-02-09 10:46:31',139.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17325,12,12,'2023-02-09 10:46:31',139.665997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17326,12,12,'2023-02-09 10:46:31',140.238625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17327,12,12,'2023-02-09 10:46:31',140.248623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17328,12,12,'2023-02-09 10:46:31',140.665620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17329,12,12,'2023-02-09 10:46:31',140.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17330,12,12,'2023-02-09 10:46:31',141.256624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17331,12,12,'2023-02-09 10:46:31',141.266622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17332,12,12,'2023-02-09 10:46:31',141.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17333,12,12,'2023-02-09 10:46:31',141.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17334,12,12,'2023-02-09 10:46:31',142.274623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17335,12,12,'2023-02-09 10:46:31',142.285617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17336,12,12,'2023-02-09 10:46:31',142.705621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17337,12,12,'2023-02-09 10:46:31',142.724993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17338,12,12,'2023-02-09 10:46:31',143.295619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17339,12,12,'2023-02-09 10:46:31',143.306623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17340,12,12,'2023-02-09 10:46:31',143.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17341,12,12,'2023-02-09 10:46:31',143.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17342,12,12,'2023-02-09 10:46:31',144.317621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17343,12,12,'2023-02-09 10:46:31',144.328625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17344,12,12,'2023-02-09 10:46:31',144.745622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17345,12,12,'2023-02-09 10:46:31',144.778995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17346,12,12,'2023-02-09 10:46:31',145.334625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17347,12,12,'2023-02-09 10:46:31',145.345618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17348,12,12,'2023-02-09 10:46:31',145.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17349,12,12,'2023-02-09 10:46:31',145.820993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17350,12,12,'2023-02-09 10:46:31',146.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17351,12,12,'2023-02-09 10:46:31',146.367620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17352,12,12,'2023-02-09 10:46:31',146.785623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17353,12,12,'2023-02-09 10:46:31',146.804995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17354,12,12,'2023-02-09 10:46:31',147.378619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17355,12,12,'2023-02-09 10:46:31',147.388617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17356,12,12,'2023-02-09 10:46:31',147.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17357,12,12,'2023-02-09 10:46:31',147.824995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17358,12,12,'2023-02-09 10:46:31',148.396618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17359,12,12,'2023-02-09 10:46:31',148.407621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17360,12,12,'2023-02-09 10:46:31',148.825624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17361,12,12,'2023-02-09 10:46:31',148.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17362,12,12,'2023-02-09 10:46:31',149.417624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17363,12,12,'2023-02-09 10:46:31',149.428618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17364,12,12,'2023-02-09 10:46:31',149.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17365,12,12,'2023-02-09 10:46:31',149.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17366,12,12,'2023-02-09 10:46:31',150.435623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17367,12,12,'2023-02-09 10:46:31',150.446617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17368,12,12,'2023-02-09 10:46:31',150.865625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17369,12,12,'2023-02-09 10:46:31',150.886003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17370,12,12,'2023-02-09 10:46:31',151.456619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17371,12,12,'2023-02-09 10:46:31',151.467623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17372,12,12,'2023-02-09 10:46:31',151.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17373,12,12,'2023-02-09 10:46:31',151.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17374,12,12,'2023-02-09 10:46:31',152.474618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17375,12,12,'2023-02-09 10:46:31',152.485622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17376,12,12,'2023-02-09 10:46:31',152.905626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17377,12,12,'2023-02-09 10:46:31',152.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17378,12,12,'2023-02-09 10:46:31',153.495624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17379,12,12,'2023-02-09 10:46:31',153.506618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17380,12,12,'2023-02-09 10:46:31',153.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17381,12,12,'2023-02-09 10:46:31',153.980997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17382,12,12,'2023-02-09 10:46:31',154.517626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17383,12,12,'2023-02-09 10:46:31',154.528620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17384,12,12,'2023-02-09 10:46:31',154.945627,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17385,12,12,'2023-02-09 10:46:31',154.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17386,12,12,'2023-02-09 10:46:31',155.534620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17387,12,12,'2023-02-09 10:46:31',155.545623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17388,12,12,'2023-02-09 10:46:31',155.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17389,12,12,'2023-02-09 10:46:31',155.999000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17390,12,12,'2023-02-09 10:46:31',156.557617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17391,12,12,'2023-02-09 10:46:31',156.568621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17392,12,12,'2023-02-09 10:46:31',156.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17393,12,12,'2023-02-09 10:46:31',157.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17394,12,12,'2023-02-09 10:46:31',157.578624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17395,12,12,'2023-02-09 10:46:31',157.589617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17396,12,12,'2023-02-09 10:46:31',158.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17397,12,12,'2023-02-09 10:46:31',158.060999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17398,12,12,'2023-02-09 10:46:31',158.596623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17399,12,12,'2023-02-09 10:46:31',158.608622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17400,12,12,'2023-02-09 10:46:31',159.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17401,12,12,'2023-02-09 10:46:31',159.045001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17402,12,12,'2023-02-09 10:46:31',159.618625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17403,12,12,'2023-02-09 10:46:31',159.630624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17404,12,12,'2023-02-09 10:46:31',160.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17405,12,12,'2023-02-09 10:46:31',160.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17406,12,12,'2023-02-09 10:46:31',160.635618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17407,12,12,'2023-02-09 10:46:31',160.646622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17408,12,12,'2023-02-09 10:46:31',161.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17409,12,12,'2023-02-09 10:46:31',161.085002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17410,12,12,'2023-02-09 10:46:31',161.657620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17411,12,12,'2023-02-09 10:46:31',161.668624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17412,12,12,'2023-02-09 10:46:31',162.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17413,12,12,'2023-02-09 10:46:31',162.105998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17414,12,12,'2023-02-09 10:46:31',162.674623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17415,12,12,'2023-02-09 10:46:31',162.687618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17416,12,12,'2023-02-09 10:46:31',163.105621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17417,12,12,'2023-02-09 10:46:31',163.125003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17418,12,12,'2023-02-09 10:46:31',163.696625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17419,12,12,'2023-02-09 10:46:31',163.707619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17420,12,12,'2023-02-09 10:46:31',164.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17421,12,12,'2023-02-09 10:46:31',164.144993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17422,12,12,'2023-02-09 10:46:31',164.717621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17423,12,12,'2023-02-09 10:46:31',164.728625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17424,12,12,'2023-02-09 10:46:31',165.145622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17425,12,12,'2023-02-09 10:46:31',165.201002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17426,12,12,'2023-02-09 10:46:31',165.736626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17427,12,12,'2023-02-09 10:46:31',165.747620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17428,12,12,'2023-02-09 10:46:31',166.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17429,12,12,'2023-02-09 10:46:31',166.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17430,12,12,'2023-02-09 10:46:31',166.757622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17431,12,12,'2023-02-09 10:46:31',166.769622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17432,12,12,'2023-02-09 10:46:31',167.185623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17433,12,12,'2023-02-09 10:46:31',167.206001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17434,12,12,'2023-02-09 10:46:31',167.775621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17435,12,12,'2023-02-09 10:46:31',167.787621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17436,12,12,'2023-02-09 10:46:31',168.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17437,12,12,'2023-02-09 10:46:31',168.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17438,12,12,'2023-02-09 10:46:31',168.796618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17439,12,12,'2023-02-09 10:46:31',168.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17440,12,12,'2023-02-09 10:46:31',169.225624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17441,12,12,'2023-02-09 10:46:31',169.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17442,12,12,'2023-02-09 10:46:31',169.818620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17443,12,12,'2023-02-09 10:46:31',169.830619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17444,12,12,'2023-02-09 10:46:31',170.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17445,12,12,'2023-02-09 10:46:31',170.264996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17446,12,12,'2023-02-09 10:46:31',170.835623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17447,12,12,'2023-02-09 10:46:31',170.846617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17448,12,12,'2023-02-09 10:46:31',171.265625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17449,12,12,'2023-02-09 10:46:31',171.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17450,12,12,'2023-02-09 10:46:31',171.857625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17451,12,12,'2023-02-09 10:46:31',171.868619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17452,12,12,'2023-02-09 10:46:31',172.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17453,12,12,'2023-02-09 10:46:31',172.318998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17454,12,12,'2023-02-09 10:46:31',172.878621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17455,12,12,'2023-02-09 10:46:31',172.889625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17456,12,12,'2023-02-09 10:46:31',173.305626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17457,12,12,'2023-02-09 10:46:31',173.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17458,12,12,'2023-02-09 10:46:31',173.897626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17459,12,12,'2023-02-09 10:46:31',173.907624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17460,12,12,'2023-02-09 10:46:31',174.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17461,12,12,'2023-02-09 10:46:31',174.380997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17462,12,12,'2023-02-09 10:46:31',174.918622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17463,12,12,'2023-02-09 10:46:31',174.928620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17464,12,12,'2023-02-09 10:46:31',175.345616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17465,12,12,'2023-02-09 10:46:31',175.364999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17466,12,12,'2023-02-09 10:46:31',175.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17467,12,12,'2023-02-09 10:46:31',175.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17468,12,12,'2023-02-09 10:46:31',176.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17469,12,12,'2023-02-09 10:46:31',176.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17470,12,12,'2023-02-09 10:46:31',176.958623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17471,12,12,'2023-02-09 10:46:31',176.969617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17472,12,12,'2023-02-09 10:46:31',177.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17473,12,12,'2023-02-09 10:46:31',177.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17474,12,12,'2023-02-09 10:46:31',177.975616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17475,12,12,'2023-02-09 10:46:31',177.986620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17476,12,12,'2023-02-09 10:46:31',178.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17477,12,12,'2023-02-09 10:46:31',178.425996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17478,12,12,'2023-02-09 10:46:31',178.997618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17479,12,12,'2023-02-09 10:46:31',179.008622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17480,12,12,'2023-02-09 10:46:31',179.425618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17481,12,12,'2023-02-09 10:46:31',179.445001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17482,12,12,'2023-02-09 10:46:31',180.014622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17483,12,12,'2023-02-09 10:46:31',180.025625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17484,12,12,'2023-02-09 10:46:31',180.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17485,12,12,'2023-02-09 10:46:31',180.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17486,12,12,'2023-02-09 10:46:31',181.036624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17487,12,12,'2023-02-09 10:46:31',181.048623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17488,12,12,'2023-02-09 10:46:31',181.465619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17489,12,12,'2023-02-09 10:46:31',181.485002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17490,12,12,'2023-02-09 10:46:31',182.057620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17491,12,12,'2023-02-09 10:46:31',182.068624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17492,12,12,'2023-02-09 10:46:31',182.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17493,12,12,'2023-02-09 10:46:31',182.505002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17494,12,12,'2023-02-09 10:46:31',183.076625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17495,12,12,'2023-02-09 10:46:31',183.087618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17496,12,12,'2023-02-09 10:46:31',183.505620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17497,12,12,'2023-02-09 10:46:31',183.538994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17498,12,12,'2023-02-09 10:46:31',184.097621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17499,12,12,'2023-02-09 10:46:31',184.107619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17500,12,12,'2023-02-09 10:46:31',184.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17501,12,12,'2023-02-09 10:46:31',184.581002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17502,12,12,'2023-02-09 10:46:31',185.115620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17503,12,12,'2023-02-09 10:46:31',185.126624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17504,12,12,'2023-02-09 10:46:31',185.545621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17505,12,12,'2023-02-09 10:46:31',185.564994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17506,12,12,'2023-02-09 10:46:31',186.136626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17507,12,12,'2023-02-09 10:46:31',186.147620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17508,12,12,'2023-02-09 10:46:31',186.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17509,12,12,'2023-02-09 10:46:31',186.584994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17510,12,12,'2023-02-09 10:46:31',187.158618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17511,12,12,'2023-02-09 10:46:31',187.169622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17512,12,12,'2023-02-09 10:46:31',187.585623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17513,12,12,'2023-02-09 10:46:31',187.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17514,12,12,'2023-02-09 10:46:31',188.175621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17515,12,12,'2023-02-09 10:46:31',188.186625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17516,12,12,'2023-02-09 10:46:31',188.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17517,12,12,'2023-02-09 10:46:31',188.624995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17518,12,12,'2023-02-09 10:46:31',189.197623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17519,12,12,'2023-02-09 10:46:31',189.208617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17520,12,12,'2023-02-09 10:46:31',189.625624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17521,12,12,'2023-02-09 10:46:31',189.646002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17522,12,12,'2023-02-09 10:46:31',190.214616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17523,12,12,'2023-02-09 10:46:31',190.225620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17524,12,12,'2023-02-09 10:46:31',190.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17525,12,12,'2023-02-09 10:46:31',190.664996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17526,12,12,'2023-02-09 10:46:31',191.236619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17527,12,12,'2023-02-09 10:46:31',191.247622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17528,12,12,'2023-02-09 10:46:31',191.665625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17529,12,12,'2023-02-09 10:46:31',191.684997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17530,12,12,'2023-02-09 10:46:31',192.258621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17531,12,12,'2023-02-09 10:46:31',192.269624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17532,12,12,'2023-02-09 10:46:31',192.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17533,12,12,'2023-02-09 10:46:31',192.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17534,12,12,'2023-02-09 10:46:31',193.276620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17535,12,12,'2023-02-09 10:46:31',193.286618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17536,12,12,'2023-02-09 10:46:31',193.705626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17537,12,12,'2023-02-09 10:46:31',193.762002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17538,12,12,'2023-02-09 10:46:31',194.298622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17539,12,12,'2023-02-09 10:46:31',194.308620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17540,12,12,'2023-02-09 10:46:31',194.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17541,12,12,'2023-02-09 10:46:31',194.745994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17542,12,12,'2023-02-09 10:46:31',195.315625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17543,12,12,'2023-02-09 10:46:31',195.326619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17544,12,12,'2023-02-09 10:46:31',195.745627,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17545,12,12,'2023-02-09 10:46:31',195.764999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17546,12,12,'2023-02-09 10:46:31',196.337617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17547,12,12,'2023-02-09 10:46:31',196.348621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17548,12,12,'2023-02-09 10:46:31',196.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17549,12,12,'2023-02-09 10:46:31',196.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17550,12,12,'2023-02-09 10:46:31',197.354620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17551,12,12,'2023-02-09 10:46:31',197.365624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17552,12,12,'2023-02-09 10:46:31',197.785617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17553,12,12,'2023-02-09 10:46:31',197.805000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17554,12,12,'2023-02-09 10:46:31',198.376622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17555,12,12,'2023-02-09 10:46:31',198.387626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17556,12,12,'2023-02-09 10:46:31',198.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17557,12,12,'2023-02-09 10:46:31',198.860999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17558,12,12,'2023-02-09 10:46:31',199.397618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17559,12,12,'2023-02-09 10:46:31',199.408622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17560,12,12,'2023-02-09 10:46:31',199.825618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17561,12,12,'2023-02-09 10:46:31',199.845001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17562,12,12,'2023-02-09 10:46:31',200.415617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17563,12,12,'2023-02-09 10:46:31',200.426621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17564,12,12,'2023-02-09 10:46:31',200.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17565,12,12,'2023-02-09 10:46:31',200.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17566,12,12,'2023-02-09 10:46:31',201.437619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17567,12,12,'2023-02-09 10:46:31',201.447617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17568,12,12,'2023-02-09 10:46:31',201.865619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17569,12,12,'2023-02-09 10:46:31',201.885002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17570,12,12,'2023-02-09 10:46:31',202.455618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17571,12,12,'2023-02-09 10:46:31',202.466622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17572,12,12,'2023-02-09 10:46:31',202.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17573,12,12,'2023-02-09 10:46:31',202.905002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17574,12,12,'2023-02-09 10:46:31',203.476625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17575,12,12,'2023-02-09 10:46:31',203.487618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17576,12,12,'2023-02-09 10:46:31',203.905620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17577,12,12,'2023-02-09 10:46:31',203.925003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17578,12,12,'2023-02-09 10:46:31',204.498617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17579,12,12,'2023-02-09 10:46:31',204.509620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17580,12,12,'2023-02-09 10:46:31',204.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17581,12,12,'2023-02-09 10:46:31',204.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17582,12,12,'2023-02-09 10:46:31',205.515620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17583,12,12,'2023-02-09 10:46:31',205.526624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17584,12,12,'2023-02-09 10:46:31',205.945621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17585,12,12,'2023-02-09 10:46:31',206.001002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17586,12,12,'2023-02-09 10:46:31',206.537622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17587,12,12,'2023-02-09 10:46:31',206.548626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17588,12,12,'2023-02-09 10:46:31',206.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17589,12,12,'2023-02-09 10:46:31',206.984994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17590,12,12,'2023-02-09 10:46:31',207.554625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17591,12,12,'2023-02-09 10:46:31',207.565619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17592,12,12,'2023-02-09 10:46:31',207.985622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17593,12,12,'2023-02-09 10:46:31',208.004995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17594,12,12,'2023-02-09 10:46:31',208.576617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17595,12,12,'2023-02-09 10:46:31',208.587621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17596,12,12,'2023-02-09 10:46:31',209.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17597,12,12,'2023-02-09 10:46:31',209.024995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17598,12,12,'2023-02-09 10:46:31',209.595622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17599,12,12,'2023-02-09 10:46:31',209.606626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17600,12,12,'2023-02-09 10:46:31',210.025623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17601,12,12,'2023-02-09 10:46:31',210.044996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17602,12,12,'2023-02-09 10:46:31',210.616618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17603,12,12,'2023-02-09 10:46:31',210.627622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17604,12,12,'2023-02-09 10:46:31',211.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17605,12,12,'2023-02-09 10:46:31',211.078997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17606,12,12,'2023-02-09 10:46:31',211.638620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17607,12,12,'2023-02-09 10:46:31',211.649624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17608,12,12,'2023-02-09 10:46:31',212.065625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17609,12,12,'2023-02-09 10:46:31',212.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17610,12,12,'2023-02-09 10:46:31',212.655623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17611,12,12,'2023-02-09 10:46:31',212.665621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17612,12,12,'2023-02-09 10:46:31',213.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17613,12,12,'2023-02-09 10:46:31',213.104997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17614,12,12,'2023-02-09 10:46:31',213.677625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17615,12,12,'2023-02-09 10:46:31',213.688619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17616,12,12,'2023-02-09 10:46:31',214.105626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17617,12,12,'2023-02-09 10:46:31',214.124998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17618,12,12,'2023-02-09 10:46:31',214.698622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17619,12,12,'2023-02-09 10:46:31',214.709625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17620,12,12,'2023-02-09 10:46:31',215.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17621,12,12,'2023-02-09 10:46:31',215.180997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17622,12,12,'2023-02-09 10:46:31',215.716621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17623,12,12,'2023-02-09 10:46:31',215.727624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17624,12,12,'2023-02-09 10:46:31',216.145616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17625,12,12,'2023-02-09 10:46:31',216.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17626,12,12,'2023-02-09 10:46:31',216.737617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17627,12,12,'2023-02-09 10:46:31',216.748621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17628,12,12,'2023-02-09 10:46:31',217.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17629,12,12,'2023-02-09 10:46:31',217.185995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17630,12,12,'2023-02-09 10:46:31',217.755626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17631,12,12,'2023-02-09 10:46:31',217.766620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17632,12,12,'2023-02-09 10:46:31',218.185617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17633,12,12,'2023-02-09 10:46:31',218.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17634,12,12,'2023-02-09 10:46:31',218.776622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17635,12,12,'2023-02-09 10:46:31',218.787626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17636,12,12,'2023-02-09 10:46:31',219.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17637,12,12,'2023-02-09 10:46:31',219.225000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17638,12,12,'2023-02-09 10:46:31',219.795617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17639,12,12,'2023-02-09 10:46:31',219.806621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17640,12,12,'2023-02-09 10:46:31',220.225618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17641,12,12,'2023-02-09 10:46:31',220.245001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17642,12,12,'2023-02-09 10:46:31',220.816623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17643,12,12,'2023-02-09 10:46:31',220.827617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17644,12,12,'2023-02-09 10:46:31',221.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17645,12,12,'2023-02-09 10:46:31',221.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17646,12,12,'2023-02-09 10:46:31',221.838625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17647,12,12,'2023-02-09 10:46:31',221.849619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17648,12,12,'2023-02-09 10:46:31',222.265619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17649,12,12,'2023-02-09 10:46:31',222.298993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17650,12,12,'2023-02-09 10:46:31',222.855618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17651,12,12,'2023-02-09 10:46:31',222.866622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17652,12,12,'2023-02-09 10:46:31',223.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17653,12,12,'2023-02-09 10:46:31',223.305002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17654,12,12,'2023-02-09 10:46:31',223.877620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17655,12,12,'2023-02-09 10:46:31',223.888624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17656,12,12,'2023-02-09 10:46:31',224.305620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17657,12,12,'2023-02-09 10:46:31',224.361001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17658,12,12,'2023-02-09 10:46:31',224.898617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17659,12,12,'2023-02-09 10:46:31',224.909620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17660,12,12,'2023-02-09 10:46:31',225.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17661,12,12,'2023-02-09 10:46:31',225.344993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17662,12,12,'2023-02-09 10:46:31',225.916626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17663,12,12,'2023-02-09 10:46:31',225.927619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17664,12,12,'2023-02-09 10:46:31',226.345621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17665,12,12,'2023-02-09 10:46:31',226.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17666,12,12,'2023-02-09 10:46:31',226.934625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17667,12,12,'2023-02-09 10:46:31',226.945618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17668,12,12,'2023-02-09 10:46:31',227.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17669,12,12,'2023-02-09 10:46:31',227.384994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17670,12,12,'2023-02-09 10:46:31',227.955621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17671,12,12,'2023-02-09 10:46:31',227.966625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17672,12,12,'2023-02-09 10:46:31',228.385622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17673,12,12,'2023-02-09 10:46:31',228.404995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17674,12,12,'2023-02-09 10:46:31',228.978619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17675,12,12,'2023-02-09 10:46:31',228.988617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17676,12,12,'2023-02-09 10:46:31',229.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17677,12,12,'2023-02-09 10:46:31',229.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17678,12,12,'2023-02-09 10:46:31',229.995622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17679,12,12,'2023-02-09 10:46:31',230.005620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17680,12,12,'2023-02-09 10:46:31',230.425623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17681,12,12,'2023-02-09 10:46:31',230.444996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17682,12,12,'2023-02-09 10:46:31',231.017624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17683,12,12,'2023-02-09 10:46:31',231.028618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17684,12,12,'2023-02-09 10:46:31',231.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17685,12,12,'2023-02-09 10:46:31',231.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17686,12,12,'2023-02-09 10:46:31',232.038620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17687,12,12,'2023-02-09 10:46:31',232.049624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17688,12,12,'2023-02-09 10:46:31',232.465624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17689,12,12,'2023-02-09 10:46:31',232.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17690,12,12,'2023-02-09 10:46:31',233.056619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17691,12,12,'2023-02-09 10:46:31',233.067623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17692,12,12,'2023-02-09 10:46:31',233.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17693,12,12,'2023-02-09 10:46:31',233.505993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17694,12,12,'2023-02-09 10:46:31',234.077625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17695,12,12,'2023-02-09 10:46:31',234.088619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17696,12,12,'2023-02-09 10:46:31',234.505625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17697,12,12,'2023-02-09 10:46:31',234.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17698,12,12,'2023-02-09 10:46:31',235.095624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17699,12,12,'2023-02-09 10:46:31',235.106618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17700,12,12,'2023-02-09 10:46:31',235.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17701,12,12,'2023-02-09 10:46:31',235.580997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17702,12,12,'2023-02-09 10:46:31',236.116621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17703,12,12,'2023-02-09 10:46:31',236.127624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17704,12,12,'2023-02-09 10:46:31',236.545627,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17705,12,12,'2023-02-09 10:46:31',236.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17706,12,12,'2023-02-09 10:46:31',237.134619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17707,12,12,'2023-02-09 10:46:31',237.145623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17708,12,12,'2023-02-09 10:46:31',237.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17709,12,12,'2023-02-09 10:46:31',237.584999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17710,12,12,'2023-02-09 10:46:31',238.155626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17711,12,12,'2023-02-09 10:46:31',238.166620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17712,12,12,'2023-02-09 10:46:31',238.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17713,12,12,'2023-02-09 10:46:31',238.619001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17714,12,12,'2023-02-09 10:46:31',239.178624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17715,12,12,'2023-02-09 10:46:31',239.189617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17716,12,12,'2023-02-09 10:46:31',239.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17717,12,12,'2023-02-09 10:46:31',239.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17718,12,12,'2023-02-09 10:46:31',240.195617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17719,12,12,'2023-02-09 10:46:31',240.206621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17720,12,12,'2023-02-09 10:46:31',240.625618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17721,12,12,'2023-02-09 10:46:31',240.680999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17722,12,12,'2023-02-09 10:46:31',241.217619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17723,12,12,'2023-02-09 10:46:31',241.228623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17724,12,12,'2023-02-09 10:46:31',241.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17725,12,12,'2023-02-09 10:46:31',241.665001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17726,12,12,'2023-02-09 10:46:31',242.238625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17727,12,12,'2023-02-09 10:46:31',242.249619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17728,12,12,'2023-02-09 10:46:31',242.665619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17729,12,12,'2023-02-09 10:46:31',242.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17730,12,12,'2023-02-09 10:46:31',243.256624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17731,12,12,'2023-02-09 10:46:31',243.267618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17732,12,12,'2023-02-09 10:46:31',243.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17733,12,12,'2023-02-09 10:46:31',243.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17734,12,12,'2023-02-09 10:46:31',244.274623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17735,12,12,'2023-02-09 10:46:31',244.285617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17736,12,12,'2023-02-09 10:46:31',244.705620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17737,12,12,'2023-02-09 10:46:31',244.725999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17738,12,12,'2023-02-09 10:46:31',245.295619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17739,12,12,'2023-02-09 10:46:31',245.306623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17740,12,12,'2023-02-09 10:46:31',245.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17741,12,12,'2023-02-09 10:46:31',245.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17742,12,12,'2023-02-09 10:46:31',246.318617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17743,12,12,'2023-02-09 10:46:31',246.328625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17744,12,12,'2023-02-09 10:46:31',246.745621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17745,12,12,'2023-02-09 10:46:31',246.764994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17746,12,12,'2023-02-09 10:46:31',247.335620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17747,12,12,'2023-02-09 10:46:31',247.346624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17748,12,12,'2023-02-09 10:46:31',247.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17749,12,12,'2023-02-09 10:46:31',247.784994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17750,12,12,'2023-02-09 10:46:31',248.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17751,12,12,'2023-02-09 10:46:31',248.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17752,12,12,'2023-02-09 10:46:31',248.785622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17753,12,12,'2023-02-09 10:46:31',248.840993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17754,12,12,'2023-02-09 10:46:31',249.378619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17755,12,12,'2023-02-09 10:46:31',249.389622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17756,12,12,'2023-02-09 10:46:31',249.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17757,12,12,'2023-02-09 10:46:31',249.838996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17758,12,12,'2023-02-09 10:46:31',250.399625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17759,12,12,'2023-02-09 10:46:31',250.413626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17760,12,12,'2023-02-09 10:46:31',250.825623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17761,12,12,'2023-02-09 10:46:31',250.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17762,12,12,'2023-02-09 10:46:31',251.417624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17763,12,12,'2023-02-09 10:46:31',251.428618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17764,12,12,'2023-02-09 10:46:31',251.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17765,12,12,'2023-02-09 10:46:31',251.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17766,12,12,'2023-02-09 10:46:31',252.435623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17767,12,12,'2023-02-09 10:46:31',252.446627,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17768,12,12,'2023-02-09 10:46:31',252.865624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17769,12,12,'2023-02-09 10:46:31',252.884997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17770,12,12,'2023-02-09 10:46:31',253.456619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17771,12,12,'2023-02-09 10:46:31',253.467623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17772,12,12,'2023-02-09 10:46:31',253.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17773,12,12,'2023-02-09 10:46:31',253.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17774,12,12,'2023-02-09 10:46:31',254.474618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17775,12,12,'2023-02-09 10:46:31',254.485622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17776,12,12,'2023-02-09 10:46:31',254.905625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17777,12,12,'2023-02-09 10:46:31',254.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17778,12,12,'2023-02-09 10:46:31',255.495624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17779,12,12,'2023-02-09 10:46:31',255.506618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17780,12,12,'2023-02-09 10:46:31',255.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17781,12,12,'2023-02-09 10:46:31',255.944998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17782,12,12,'2023-02-09 10:46:31',256.518622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17783,12,12,'2023-02-09 10:46:31',256.529626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17784,12,12,'2023-02-09 10:46:31',256.945616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17785,12,12,'2023-02-09 10:46:31',257.000997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17786,12,12,'2023-02-09 10:46:31',257.535625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17787,12,12,'2023-02-09 10:46:31',257.546619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17788,12,12,'2023-02-09 10:46:31',257.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17789,12,12,'2023-02-09 10:46:31',257.984999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17790,12,12,'2023-02-09 10:46:31',258.557617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17791,12,12,'2023-02-09 10:46:31',258.568621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17792,12,12,'2023-02-09 10:46:31',258.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17793,12,12,'2023-02-09 10:46:32',259.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17794,12,12,'2023-02-09 10:46:32',259.578624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17795,12,12,'2023-02-09 10:46:32',259.589617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17796,12,12,'2023-02-09 10:46:32',260.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17797,12,12,'2023-02-09 10:46:32',260.025000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17798,12,12,'2023-02-09 10:46:32',260.596623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17799,12,12,'2023-02-09 10:46:32',260.607616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17800,12,12,'2023-02-09 10:46:32',261.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17801,12,12,'2023-02-09 10:46:32',261.080999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17802,12,12,'2023-02-09 10:46:32',261.614621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17803,12,12,'2023-02-09 10:46:32',261.625625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17804,12,12,'2023-02-09 10:46:32',262.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17805,12,12,'2023-02-09 10:46:32',262.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17806,12,12,'2023-02-09 10:46:32',262.635618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17807,12,12,'2023-02-09 10:46:32',262.646622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17808,12,12,'2023-02-09 10:46:32',263.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17809,12,12,'2023-02-09 10:46:32',263.085002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17810,12,12,'2023-02-09 10:46:32',263.657620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17811,12,12,'2023-02-09 10:46:32',263.668624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17812,12,12,'2023-02-09 10:46:32',264.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17813,12,12,'2023-02-09 10:46:32',264.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17814,12,12,'2023-02-09 10:46:32',264.675619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17815,12,12,'2023-02-09 10:46:32',264.686623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17816,12,12,'2023-02-09 10:46:32',265.105620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17817,12,12,'2023-02-09 10:46:32',265.124993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17818,12,12,'2023-02-09 10:46:32',265.696625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17819,12,12,'2023-02-09 10:46:32',265.707619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17820,12,12,'2023-02-09 10:46:32',266.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17821,12,12,'2023-02-09 10:46:32',266.144993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17822,12,12,'2023-02-09 10:46:32',266.718617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17823,12,12,'2023-02-09 10:46:32',266.729621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17824,12,12,'2023-02-09 10:46:32',267.145621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17825,12,12,'2023-02-09 10:46:32',267.201002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17826,12,12,'2023-02-09 10:46:32',267.736626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17827,12,12,'2023-02-09 10:46:32',267.747620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17828,12,12,'2023-02-09 10:46:32',268.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17829,12,12,'2023-02-09 10:46:32',268.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17830,12,12,'2023-02-09 10:46:32',268.757622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17831,12,12,'2023-02-09 10:46:32',268.768626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17832,12,12,'2023-02-09 10:46:32',269.185622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17833,12,12,'2023-02-09 10:46:32',269.204995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17834,12,12,'2023-02-09 10:46:32',269.775621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17835,12,12,'2023-02-09 10:46:32',269.786625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17836,12,12,'2023-02-09 10:46:32',270.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17837,12,12,'2023-02-09 10:46:32',270.260994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17838,12,12,'2023-02-09 10:46:32',270.796618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17839,12,12,'2023-02-09 10:46:32',270.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17840,12,12,'2023-02-09 10:46:32',271.225623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17841,12,12,'2023-02-09 10:46:32',271.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17842,12,12,'2023-02-09 10:46:32',271.814616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17843,12,12,'2023-02-09 10:46:32',271.825620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17844,12,12,'2023-02-09 10:46:32',272.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17845,12,12,'2023-02-09 10:46:32',272.278997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17846,12,12,'2023-02-09 10:46:32',272.835623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17847,12,12,'2023-02-09 10:46:32',272.846616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17848,12,12,'2023-02-09 10:46:32',273.265624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17849,12,12,'2023-02-09 10:46:32',273.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17850,12,12,'2023-02-09 10:46:32',273.857625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17851,12,12,'2023-02-09 10:46:32',273.868619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17852,12,12,'2023-02-09 10:46:32',274.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17853,12,12,'2023-02-09 10:46:32',274.304997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17854,12,12,'2023-02-09 10:46:32',274.874618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17855,12,12,'2023-02-09 10:46:32',274.886617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17856,12,12,'2023-02-09 10:46:32',275.305625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17857,12,12,'2023-02-09 10:46:32',275.360996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17858,12,12,'2023-02-09 10:46:32',275.897626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17859,12,12,'2023-02-09 10:46:32',275.908620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17860,12,12,'2023-02-09 10:46:32',276.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17861,12,12,'2023-02-09 10:46:32',276.344998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17862,12,12,'2023-02-09 10:46:32',276.918622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17863,12,12,'2023-02-09 10:46:32',276.929626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17864,12,12,'2023-02-09 10:46:32',277.345626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17865,12,12,'2023-02-09 10:46:32',277.379000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17866,12,12,'2023-02-09 10:46:32',277.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17867,12,12,'2023-02-09 10:46:32',277.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17868,12,12,'2023-02-09 10:46:32',278.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17869,12,12,'2023-02-09 10:46:32',278.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17870,12,12,'2023-02-09 10:46:32',278.954620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17871,12,12,'2023-02-09 10:46:32',278.965624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17872,12,12,'2023-02-09 10:46:32',279.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17873,12,12,'2023-02-09 10:46:32',279.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17874,12,12,'2023-02-09 10:46:32',279.975626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17875,12,12,'2023-02-09 10:46:32',279.986620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17876,12,12,'2023-02-09 10:46:32',280.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17877,12,12,'2023-02-09 10:46:32',280.460999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17878,12,12,'2023-02-09 10:46:32',280.997618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17879,12,12,'2023-02-09 10:46:32',281.008622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17880,12,12,'2023-02-09 10:46:32',281.425618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17881,12,12,'2023-02-09 10:46:32',281.445001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17882,12,12,'2023-02-09 10:46:32',282.014621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17883,12,12,'2023-02-09 10:46:32',282.025625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17884,12,12,'2023-02-09 10:46:32',282.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17885,12,12,'2023-02-09 10:46:32',282.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17886,12,12,'2023-02-09 10:46:32',283.037619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17887,12,12,'2023-02-09 10:46:32',283.048623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17888,12,12,'2023-02-09 10:46:32',283.465619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17889,12,12,'2023-02-09 10:46:32',283.485002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17890,12,12,'2023-02-09 10:46:32',284.058626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17891,12,12,'2023-02-09 10:46:32',284.069619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17892,12,12,'2023-02-09 10:46:32',284.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17893,12,12,'2023-02-09 10:46:32',284.505002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17894,12,12,'2023-02-09 10:46:32',285.076625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17895,12,12,'2023-02-09 10:46:32',285.087618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17896,12,12,'2023-02-09 10:46:32',285.505620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17897,12,12,'2023-02-09 10:46:32',285.525003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17898,12,12,'2023-02-09 10:46:32',286.096625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17899,12,12,'2023-02-09 10:46:32',286.107619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17900,12,12,'2023-02-09 10:46:32',286.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17901,12,12,'2023-02-09 10:46:32',286.544993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17902,12,12,'2023-02-09 10:46:32',287.115620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17903,12,12,'2023-02-09 10:46:32',287.126624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17904,12,12,'2023-02-09 10:46:32',287.545621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17905,12,12,'2023-02-09 10:46:32',287.601998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17906,12,12,'2023-02-09 10:46:32',288.136626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17907,12,12,'2023-02-09 10:46:32',288.147620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17908,12,12,'2023-02-09 10:46:32',288.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17909,12,12,'2023-02-09 10:46:32',288.598995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17910,12,12,'2023-02-09 10:46:32',289.154625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17911,12,12,'2023-02-09 10:46:32',289.165619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17912,12,12,'2023-02-09 10:46:32',289.585622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17913,12,12,'2023-02-09 10:46:32',289.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17914,12,12,'2023-02-09 10:46:32',290.175621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17915,12,12,'2023-02-09 10:46:32',290.186625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17916,12,12,'2023-02-09 10:46:32',290.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17917,12,12,'2023-02-09 10:46:32',290.624995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17918,12,12,'2023-02-09 10:46:32',291.197623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17919,12,12,'2023-02-09 10:46:32',291.209623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17920,12,12,'2023-02-09 10:46:32',291.625623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17921,12,12,'2023-02-09 10:46:32',291.644996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17922,12,12,'2023-02-09 10:46:32',292.214627,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17923,12,12,'2023-02-09 10:46:32',292.225620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17924,12,12,'2023-02-09 10:46:32',292.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17925,12,12,'2023-02-09 10:46:32',292.700995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17926,12,12,'2023-02-09 10:46:32',293.237624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17927,12,12,'2023-02-09 10:46:32',293.248618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17928,12,12,'2023-02-09 10:46:32',293.665624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17929,12,12,'2023-02-09 10:46:32',293.698998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17930,12,12,'2023-02-09 10:46:32',294.258621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17931,12,12,'2023-02-09 10:46:32',294.269624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17932,12,12,'2023-02-09 10:46:32',294.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17933,12,12,'2023-02-09 10:46:32',294.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17934,12,12,'2023-02-09 10:46:32',295.276620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17935,12,12,'2023-02-09 10:46:32',295.287623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17936,12,12,'2023-02-09 10:46:32',295.705625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17937,12,12,'2023-02-09 10:46:32',295.724998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17938,12,12,'2023-02-09 10:46:32',296.298622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17939,12,12,'2023-02-09 10:46:32',296.309625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17940,12,12,'2023-02-09 10:46:32',296.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17941,12,12,'2023-02-09 10:46:32',296.744998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17942,12,12,'2023-02-09 10:46:32',297.315625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17943,12,12,'2023-02-09 10:46:32',297.326618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17944,12,12,'2023-02-09 10:46:32',297.745616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17945,12,12,'2023-02-09 10:46:32',297.800997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17946,12,12,'2023-02-09 10:46:32',298.337617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17947,12,12,'2023-02-09 10:46:32',298.348621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17948,12,12,'2023-02-09 10:46:32',298.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17949,12,12,'2023-02-09 10:46:32',298.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17950,12,12,'2023-02-09 10:46:32',299.354620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17951,12,12,'2023-02-09 10:46:32',299.365624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17952,12,12,'2023-02-09 10:46:32',299.785617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17953,12,12,'2023-02-09 10:46:32',299.805996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17954,12,12,'2023-02-09 10:46:32',300.377618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17955,12,12,'2023-02-09 10:46:32',300.388622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17956,12,12,'2023-02-09 10:46:32',300.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17957,12,12,'2023-02-09 10:46:32',300.825000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17958,12,12,'2023-02-09 10:46:32',301.398624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17959,12,12,'2023-02-09 10:46:32',301.409618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17960,12,12,'2023-02-09 10:46:32',301.825618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17961,12,12,'2023-02-09 10:46:32',301.880999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17962,12,12,'2023-02-09 10:46:32',302.416623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17963,12,12,'2023-02-09 10:46:32',302.427617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17964,12,12,'2023-02-09 10:46:32',302.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17965,12,12,'2023-02-09 10:46:32',302.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17966,12,12,'2023-02-09 10:46:32',303.437619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17967,12,12,'2023-02-09 10:46:32',303.448623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17968,12,12,'2023-02-09 10:46:32',303.865619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17969,12,12,'2023-02-09 10:46:32',303.885002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17970,12,12,'2023-02-09 10:46:32',304.455618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17971,12,12,'2023-02-09 10:46:32',304.466622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17972,12,12,'2023-02-09 10:46:32',304.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17973,12,12,'2023-02-09 10:46:32',304.918993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17974,12,12,'2023-02-09 10:46:32',305.476625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17975,12,12,'2023-02-09 10:46:32',305.487618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17976,12,12,'2023-02-09 10:46:32',305.905620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17977,12,12,'2023-02-09 10:46:32',305.924993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17978,12,12,'2023-02-09 10:46:32',306.494623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17979,12,12,'2023-02-09 10:46:32',306.505617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17980,12,12,'2023-02-09 10:46:32',306.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17981,12,12,'2023-02-09 10:46:32',306.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17982,12,12,'2023-02-09 10:46:32',307.515620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17983,12,12,'2023-02-09 10:46:32',307.526624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17984,12,12,'2023-02-09 10:46:32',307.945621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17985,12,12,'2023-02-09 10:46:32',307.964994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17986,12,12,'2023-02-09 10:46:32',308.537622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17987,12,12,'2023-02-09 10:46:32',308.548626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17988,12,12,'2023-02-09 10:46:32',308.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17989,12,12,'2023-02-09 10:46:32',309.020993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17990,12,12,'2023-02-09 10:46:32',309.554625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17991,12,12,'2023-02-09 10:46:32',309.565619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17992,12,12,'2023-02-09 10:46:32',309.985622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17993,12,12,'2023-02-09 10:46:32',310.004995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17994,12,12,'2023-02-09 10:46:32',310.577623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17995,12,12,'2023-02-09 10:46:32',310.588617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17996,12,12,'2023-02-09 10:46:32',311.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17997,12,12,'2023-02-09 10:46:32',311.024995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17998,12,12,'2023-02-09 10:46:32',311.597623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17999,12,12,'2023-02-09 10:46:32',311.609623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18000,12,12,'2023-02-09 10:46:32',312.025623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18001,12,12,'2023-02-09 10:46:32',312.044996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18002,12,12,'2023-02-09 10:46:32',312.616618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18003,12,12,'2023-02-09 10:46:32',312.626626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18004,12,12,'2023-02-09 10:46:32',313.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18005,12,12,'2023-02-09 10:46:32',313.064996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18006,12,12,'2023-02-09 10:46:32',313.638620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18007,12,12,'2023-02-09 10:46:32',313.654623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18008,12,12,'2023-02-09 10:46:32',314.065624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18009,12,12,'2023-02-09 10:46:32',314.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18010,12,12,'2023-02-09 10:46:32',314.655623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18011,12,12,'2023-02-09 10:46:32',314.667623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18012,12,12,'2023-02-09 10:46:32',315.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18013,12,12,'2023-02-09 10:46:32',315.142002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18014,12,12,'2023-02-09 10:46:32',315.677625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18015,12,12,'2023-02-09 10:46:32',315.688619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18016,12,12,'2023-02-09 10:46:32',316.105625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18017,12,12,'2023-02-09 10:46:32',316.125993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18018,12,12,'2023-02-09 10:46:32',316.694618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18019,12,12,'2023-02-09 10:46:32',316.705622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18020,12,12,'2023-02-09 10:46:32',317.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18021,12,12,'2023-02-09 10:46:32',317.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18022,12,12,'2023-02-09 10:46:32',317.716621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18023,12,12,'2023-02-09 10:46:32',317.731617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18024,12,12,'2023-02-09 10:46:32',318.145626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18025,12,12,'2023-02-09 10:46:32',318.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18026,12,12,'2023-02-09 10:46:32',318.737617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18027,12,12,'2023-02-09 10:46:32',318.748621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18028,12,12,'2023-02-09 10:46:32',319.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18029,12,12,'2023-02-09 10:46:32',319.184999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18030,12,12,'2023-02-09 10:46:32',319.756622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18031,12,12,'2023-02-09 10:46:32',319.767625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18032,12,12,'2023-02-09 10:46:32',320.185617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18033,12,12,'2023-02-09 10:46:32',320.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18034,12,12,'2023-02-09 10:46:32',320.777618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18035,12,12,'2023-02-09 10:46:32',320.787626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18036,12,12,'2023-02-09 10:46:32',321.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18037,12,12,'2023-02-09 10:46:32',321.225000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18038,12,12,'2023-02-09 10:46:32',321.795617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18039,12,12,'2023-02-09 10:46:32',321.804619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18040,12,12,'2023-02-09 10:46:32',322.225618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18041,12,12,'2023-02-09 10:46:32',322.280999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18042,12,12,'2023-02-09 10:46:32',322.816623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18043,12,12,'2023-02-09 10:46:32',322.830624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18044,12,12,'2023-02-09 10:46:32',323.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18045,12,12,'2023-02-09 10:46:32',323.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18046,12,12,'2023-02-09 10:46:32',323.838625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18047,12,12,'2023-02-09 10:46:32',323.849619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18048,12,12,'2023-02-09 10:46:32',324.265619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18049,12,12,'2023-02-09 10:46:32',324.285002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18050,12,12,'2023-02-09 10:46:32',324.855618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18051,12,12,'2023-02-09 10:46:32',324.867618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18052,12,12,'2023-02-09 10:46:32',325.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18053,12,12,'2023-02-09 10:46:32',325.341001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18054,12,12,'2023-02-09 10:46:32',325.877620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18055,12,12,'2023-02-09 10:46:32',325.888624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18056,12,12,'2023-02-09 10:46:32',326.305620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18057,12,12,'2023-02-09 10:46:32',326.325003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18058,12,12,'2023-02-09 10:46:32',326.894623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18059,12,12,'2023-02-09 10:46:32',326.905617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18060,12,12,'2023-02-09 10:46:32',327.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18061,12,12,'2023-02-09 10:46:32',327.345999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18062,12,12,'2023-02-09 10:46:32',327.916626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18063,12,12,'2023-02-09 10:46:32',327.927619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18064,12,12,'2023-02-09 10:46:32',328.345621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18065,12,12,'2023-02-09 10:46:32',328.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18066,12,12,'2023-02-09 10:46:32',328.937622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18067,12,12,'2023-02-09 10:46:32',328.948626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18068,12,12,'2023-02-09 10:46:32',329.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18069,12,12,'2023-02-09 10:46:32',329.384994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18070,12,12,'2023-02-09 10:46:32',329.956617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18071,12,12,'2023-02-09 10:46:32',329.966625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18072,12,12,'2023-02-09 10:46:32',330.385622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18073,12,12,'2023-02-09 10:46:32',330.440993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18074,12,12,'2023-02-09 10:46:32',330.978619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18075,12,12,'2023-02-09 10:46:32',330.988617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18076,12,12,'2023-02-09 10:46:32',331.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18077,12,12,'2023-02-09 10:46:32',331.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18078,12,12,'2023-02-09 10:46:32',331.995622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18079,12,12,'2023-02-09 10:46:32',332.006626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18080,12,12,'2023-02-09 10:46:32',332.425623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18081,12,12,'2023-02-09 10:46:32',332.446002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18082,12,12,'2023-02-09 10:46:32',333.017624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18083,12,12,'2023-02-09 10:46:32',333.028618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18084,12,12,'2023-02-09 10:46:32',333.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18085,12,12,'2023-02-09 10:46:32',333.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18086,12,12,'2023-02-09 10:46:32',334.038620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18087,12,12,'2023-02-09 10:46:32',334.049624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18088,12,12,'2023-02-09 10:46:32',334.465624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18089,12,12,'2023-02-09 10:46:32',334.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18090,12,12,'2023-02-09 10:46:32',335.056619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18091,12,12,'2023-02-09 10:46:32',335.067623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18092,12,12,'2023-02-09 10:46:32',335.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18093,12,12,'2023-02-09 10:46:32',335.504997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18094,12,12,'2023-02-09 10:46:32',336.077625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18095,12,12,'2023-02-09 10:46:32',336.088619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18096,12,12,'2023-02-09 10:46:32',336.505625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18097,12,12,'2023-02-09 10:46:32',336.560996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18098,12,12,'2023-02-09 10:46:32',337.096620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18099,12,12,'2023-02-09 10:46:32',337.107624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18100,12,12,'2023-02-09 10:46:32',337.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18101,12,12,'2023-02-09 10:46:32',337.558999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18102,12,12,'2023-02-09 10:46:32',338.117616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18103,12,12,'2023-02-09 10:46:32',338.128620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18104,12,12,'2023-02-09 10:46:32',338.545616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18105,12,12,'2023-02-09 10:46:32',338.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18106,12,12,'2023-02-09 10:46:32',339.135625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18107,12,12,'2023-02-09 10:46:32',339.145623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18108,12,12,'2023-02-09 10:46:32',339.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18109,12,12,'2023-02-09 10:46:32',339.584999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18110,12,12,'2023-02-09 10:46:32',340.156622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18111,12,12,'2023-02-09 10:46:32',340.167625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18112,12,12,'2023-02-09 10:46:32',340.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18113,12,12,'2023-02-09 10:46:32',340.605000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18114,12,12,'2023-02-09 10:46:32',341.178624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18115,12,12,'2023-02-09 10:46:32',341.188622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18116,12,12,'2023-02-09 10:46:32',341.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18117,12,12,'2023-02-09 10:46:32',341.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18118,12,12,'2023-02-09 10:46:32',342.195617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18119,12,12,'2023-02-09 10:46:32',342.205625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18120,12,12,'2023-02-09 10:46:32',342.625618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18121,12,12,'2023-02-09 10:46:32',342.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18122,12,12,'2023-02-09 10:46:32',343.217619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18123,12,12,'2023-02-09 10:46:32',343.228623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18124,12,12,'2023-02-09 10:46:32',343.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18125,12,12,'2023-02-09 10:46:32',343.701000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18126,12,12,'2023-02-09 10:46:32',344.234622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18127,12,12,'2023-02-09 10:46:32',344.245626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18128,12,12,'2023-02-09 10:46:32',344.665619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18129,12,12,'2023-02-09 10:46:32',344.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18130,12,12,'2023-02-09 10:46:32',345.256624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18131,12,12,'2023-02-09 10:46:32',345.267618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18132,12,12,'2023-02-09 10:46:32',345.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18133,12,12,'2023-02-09 10:46:32',345.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18134,12,12,'2023-02-09 10:46:32',346.274623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18135,12,12,'2023-02-09 10:46:32',346.285617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18136,12,12,'2023-02-09 10:46:32',346.705620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18137,12,12,'2023-02-09 10:46:32',346.724993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18138,12,12,'2023-02-09 10:46:32',347.295619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18139,12,12,'2023-02-09 10:46:32',347.306623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18140,12,12,'2023-02-09 10:46:32',347.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18141,12,12,'2023-02-09 10:46:32',347.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18142,12,12,'2023-02-09 10:46:32',348.318617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18143,12,12,'2023-02-09 10:46:32',348.329621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18144,12,12,'2023-02-09 10:46:32',348.745621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18145,12,12,'2023-02-09 10:46:32',348.778995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18146,12,12,'2023-02-09 10:46:32',349.335620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18147,12,12,'2023-02-09 10:46:32',349.346624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18148,12,12,'2023-02-09 10:46:32',349.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18149,12,12,'2023-02-09 10:46:32',349.784994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18150,12,12,'2023-02-09 10:46:32',350.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18151,12,12,'2023-02-09 10:46:32',350.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18152,12,12,'2023-02-09 10:46:32',350.785622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18153,12,12,'2023-02-09 10:46:32',350.804995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18154,12,12,'2023-02-09 10:46:32',351.378619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18155,12,12,'2023-02-09 10:46:32',351.389622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18156,12,12,'2023-02-09 10:46:32',351.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18157,12,12,'2023-02-09 10:46:32',351.860994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18158,12,12,'2023-02-09 10:46:32',352.396618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18159,12,12,'2023-02-09 10:46:32',352.407621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18160,12,12,'2023-02-09 10:46:32',352.825623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18161,12,12,'2023-02-09 10:46:32',352.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18162,12,12,'2023-02-09 10:46:32',353.417624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18163,12,12,'2023-02-09 10:46:32',353.428618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18164,12,12,'2023-02-09 10:46:32',353.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18165,12,12,'2023-02-09 10:46:32',353.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18166,12,12,'2023-02-09 10:46:32',354.435623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18167,12,12,'2023-02-09 10:46:32',354.446616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18168,12,12,'2023-02-09 10:46:32',354.865624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18169,12,12,'2023-02-09 10:46:32',354.886003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18170,12,12,'2023-02-09 10:46:32',355.456619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18171,12,12,'2023-02-09 10:46:32',355.467623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18172,12,12,'2023-02-09 10:46:32',355.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18173,12,12,'2023-02-09 10:46:32',355.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18174,12,12,'2023-02-09 10:46:32',356.475624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18175,12,12,'2023-02-09 10:46:32',356.485622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18176,12,12,'2023-02-09 10:46:32',356.905625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18177,12,12,'2023-02-09 10:46:32',356.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18178,12,12,'2023-02-09 10:46:32',357.495624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18179,12,12,'2023-02-09 10:46:32',357.506618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18180,12,12,'2023-02-09 10:46:32',357.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18181,12,12,'2023-02-09 10:46:32',357.980997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18182,12,12,'2023-02-09 10:46:32',358.518622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18183,12,12,'2023-02-09 10:46:32',358.529626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18184,12,12,'2023-02-09 10:46:32',358.945626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18185,12,12,'2023-02-09 10:46:32',358.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18186,12,12,'2023-02-09 10:46:32',359.535625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18187,12,12,'2023-02-09 10:46:32',359.546619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18188,12,12,'2023-02-09 10:46:32',359.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18189,12,12,'2023-02-09 10:46:32',359.985995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18190,12,12,'2023-02-09 10:46:32',360.557617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18191,12,12,'2023-02-09 10:46:32',360.568621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18192,12,12,'2023-02-09 10:46:32',360.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18193,12,12,'2023-02-09 10:46:32',361.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18194,12,12,'2023-02-09 10:46:32',361.578624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18195,12,12,'2023-02-09 10:46:32',361.589617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18196,12,12,'2023-02-09 10:46:32',362.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18197,12,12,'2023-02-09 10:46:32',362.025000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18198,12,12,'2023-02-09 10:46:32',362.596623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18199,12,12,'2023-02-09 10:46:32',362.607626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18200,12,12,'2023-02-09 10:46:32',363.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18201,12,12,'2023-02-09 10:46:32',363.080999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18202,12,12,'2023-02-09 10:46:32',363.614621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18203,12,12,'2023-02-09 10:46:32',363.625625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18204,12,12,'2023-02-09 10:46:32',364.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18205,12,12,'2023-02-09 10:46:32',364.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18206,12,12,'2023-02-09 10:46:32',364.635618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18207,12,12,'2023-02-09 10:46:32',364.646621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18208,12,12,'2023-02-09 10:46:32',365.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18209,12,12,'2023-02-09 10:46:32',365.099003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18210,12,12,'2023-02-09 10:46:32',365.658626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18211,12,12,'2023-02-09 10:46:32',365.668624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18212,12,12,'2023-02-09 10:46:32',366.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18213,12,12,'2023-02-09 10:46:32',366.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18214,12,12,'2023-02-09 10:46:32',366.674623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18215,12,12,'2023-02-09 10:46:32',366.685617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18216,12,12,'2023-02-09 10:46:32',367.105620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18217,12,12,'2023-02-09 10:46:32',367.125003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18218,12,12,'2023-02-09 10:46:32',367.697621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18219,12,12,'2023-02-09 10:46:32',367.708625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18220,12,12,'2023-02-09 10:46:32',368.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18221,12,12,'2023-02-09 10:46:32',368.144993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18222,12,12,'2023-02-09 10:46:32',368.718617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18223,12,12,'2023-02-09 10:46:32',368.729621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18224,12,12,'2023-02-09 10:46:32',369.145621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18225,12,12,'2023-02-09 10:46:32',369.164994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18226,12,12,'2023-02-09 10:46:32',369.736626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18227,12,12,'2023-02-09 10:46:32',369.748626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18228,12,12,'2023-02-09 10:46:32',370.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18229,12,12,'2023-02-09 10:46:32',370.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18230,12,12,'2023-02-09 10:46:32',370.757622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18231,12,12,'2023-02-09 10:46:32',370.767620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18232,12,12,'2023-02-09 10:46:32',371.185622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18233,12,12,'2023-02-09 10:46:32',371.240993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18234,12,12,'2023-02-09 10:46:32',371.775621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18235,12,12,'2023-02-09 10:46:32',371.786625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18236,12,12,'2023-02-09 10:46:32',372.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18237,12,12,'2023-02-09 10:46:32',372.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18238,12,12,'2023-02-09 10:46:32',372.796618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18239,12,12,'2023-02-09 10:46:32',372.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18240,12,12,'2023-02-09 10:46:32',373.225623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18241,12,12,'2023-02-09 10:46:32',373.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18242,12,12,'2023-02-09 10:46:32',373.814626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18243,12,12,'2023-02-09 10:46:32',373.825620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18244,12,12,'2023-02-09 10:46:32',374.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18245,12,12,'2023-02-09 10:46:32',374.264996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18246,12,12,'2023-02-09 10:46:32',374.836619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18247,12,12,'2023-02-09 10:46:32',374.846627,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18248,12,12,'2023-02-09 10:46:32',375.265624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18249,12,12,'2023-02-09 10:46:32',375.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18250,12,12,'2023-02-09 10:46:32',375.858621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18251,12,12,'2023-02-09 10:46:32',375.869624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18252,12,12,'2023-02-09 10:46:32',376.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18253,12,12,'2023-02-09 10:46:32',376.340996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18254,12,12,'2023-02-09 10:46:32',376.875624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18255,12,12,'2023-02-09 10:46:32',376.885622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18256,12,12,'2023-02-09 10:46:32',377.305625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18257,12,12,'2023-02-09 10:46:32',377.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18258,12,12,'2023-02-09 10:46:32',377.897626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18259,12,12,'2023-02-09 10:46:32',377.909625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18260,12,12,'2023-02-09 10:46:32',378.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18261,12,12,'2023-02-09 10:46:32',378.344998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18262,12,12,'2023-02-09 10:46:32',378.918622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18263,12,12,'2023-02-09 10:46:32',378.930622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18264,12,12,'2023-02-09 10:46:32',379.345616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18265,12,12,'2023-02-09 10:46:32',379.364999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18266,12,12,'2023-02-09 10:46:32',379.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18267,12,12,'2023-02-09 10:46:32',379.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18268,12,12,'2023-02-09 10:46:32',380.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18269,12,12,'2023-02-09 10:46:32',380.420998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18270,12,12,'2023-02-09 10:46:32',380.958623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18271,12,12,'2023-02-09 10:46:32',380.970623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18272,12,12,'2023-02-09 10:46:32',381.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18273,12,12,'2023-02-09 10:46:32',381.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18274,12,12,'2023-02-09 10:46:32',381.975616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18275,12,12,'2023-02-09 10:46:32',381.986620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18276,12,12,'2023-02-09 10:46:32',382.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18277,12,12,'2023-02-09 10:46:32',382.425996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18278,12,12,'2023-02-09 10:46:32',382.997618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18279,12,12,'2023-02-09 10:46:32',383.008622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18280,12,12,'2023-02-09 10:46:32',383.425618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18281,12,12,'2023-02-09 10:46:32',383.445001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18282,12,12,'2023-02-09 10:46:32',384.014621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18283,12,12,'2023-02-09 10:46:32',384.025625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18284,12,12,'2023-02-09 10:46:32',384.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18285,12,12,'2023-02-09 10:46:32',384.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18286,12,12,'2023-02-09 10:46:32',385.036624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18287,12,12,'2023-02-09 10:46:32',385.049619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18288,12,12,'2023-02-09 10:46:32',385.465619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18289,12,12,'2023-02-09 10:46:32',385.485002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18290,12,12,'2023-02-09 10:46:32',386.058626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18291,12,12,'2023-02-09 10:46:32',386.069619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18292,12,12,'2023-02-09 10:46:32',386.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18293,12,12,'2023-02-09 10:46:32',386.541997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18294,12,12,'2023-02-09 10:46:32',387.076625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18295,12,12,'2023-02-09 10:46:32',387.087618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18296,12,12,'2023-02-09 10:46:32',387.505620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18297,12,12,'2023-02-09 10:46:32',387.525998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18298,12,12,'2023-02-09 10:46:32',388.097621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18299,12,12,'2023-02-09 10:46:32',388.108625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18300,12,12,'2023-02-09 10:46:32',388.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18301,12,12,'2023-02-09 10:46:32',388.544993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18302,12,12,'2023-02-09 10:46:32',389.115620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18303,12,12,'2023-02-09 10:46:32',389.126623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18304,12,12,'2023-02-09 10:46:32',389.545621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18305,12,12,'2023-02-09 10:46:32',389.564994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18306,12,12,'2023-02-09 10:46:32',390.136626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18307,12,12,'2023-02-09 10:46:32',390.147620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18308,12,12,'2023-02-09 10:46:32',390.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18309,12,12,'2023-02-09 10:46:32',390.584994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18310,12,12,'2023-02-09 10:46:32',391.154625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18311,12,12,'2023-02-09 10:46:32',391.165619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18312,12,12,'2023-02-09 10:46:32',391.585622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18313,12,12,'2023-02-09 10:46:32',391.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18314,12,12,'2023-02-09 10:46:32',392.175621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18315,12,12,'2023-02-09 10:46:32',392.186625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18316,12,12,'2023-02-09 10:46:32',392.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18317,12,12,'2023-02-09 10:46:32',392.662000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18318,12,12,'2023-02-09 10:46:32',393.197623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18319,12,12,'2023-02-09 10:46:32',393.209623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18320,12,12,'2023-02-09 10:46:32',393.625623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18321,12,12,'2023-02-09 10:46:32',393.644996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18322,12,12,'2023-02-09 10:46:32',394.214616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18323,12,12,'2023-02-09 10:46:32',394.225620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18324,12,12,'2023-02-09 10:46:32',394.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18325,12,12,'2023-02-09 10:46:32',394.664996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18326,12,12,'2023-02-09 10:46:32',395.237624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18327,12,12,'2023-02-09 10:46:32',395.247622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18328,12,12,'2023-02-09 10:46:32',395.665624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18329,12,12,'2023-02-09 10:46:32',395.684997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18330,12,12,'2023-02-09 10:46:32',396.258621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18331,12,12,'2023-02-09 10:46:32',396.268619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18332,12,12,'2023-02-09 10:46:32',396.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18333,12,12,'2023-02-09 10:46:32',396.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18334,12,12,'2023-02-09 10:46:32',397.276620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18335,12,12,'2023-02-09 10:46:32',397.287623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18336,12,12,'2023-02-09 10:46:32',397.705625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18337,12,12,'2023-02-09 10:46:32',397.762002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18338,12,12,'2023-02-09 10:46:32',398.294618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18339,12,12,'2023-02-09 10:46:32',398.305622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18340,12,12,'2023-02-09 10:46:32',398.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18341,12,12,'2023-02-09 10:46:32',398.745994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18342,12,12,'2023-02-09 10:46:32',399.315625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18343,12,12,'2023-02-09 10:46:32',399.326618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18344,12,12,'2023-02-09 10:46:32',399.745626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18345,12,12,'2023-02-09 10:46:32',399.764999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18346,12,12,'2023-02-09 10:46:32',400.337617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18347,12,12,'2023-02-09 10:46:32',400.348621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18348,12,12,'2023-02-09 10:46:32',400.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18349,12,12,'2023-02-09 10:46:32',400.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18350,12,12,'2023-02-09 10:46:32',401.354620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18351,12,12,'2023-02-09 10:46:32',401.365624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18352,12,12,'2023-02-09 10:46:32',401.785617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18353,12,12,'2023-02-09 10:46:32',401.840998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18354,12,12,'2023-02-09 10:46:32',402.376622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18355,12,12,'2023-02-09 10:46:32',402.387626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18356,12,12,'2023-02-09 10:46:32',402.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18357,12,12,'2023-02-09 10:46:32',402.825000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18358,12,12,'2023-02-09 10:46:32',403.398624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18359,12,12,'2023-02-09 10:46:32',403.408622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18360,12,12,'2023-02-09 10:46:32',403.825618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18361,12,12,'2023-02-09 10:46:32',403.859002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18362,12,12,'2023-02-09 10:46:32',404.416623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18363,12,12,'2023-02-09 10:46:32',404.427617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18364,12,12,'2023-02-09 10:46:32',404.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18365,12,12,'2023-02-09 10:46:32',404.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18366,12,12,'2023-02-09 10:46:32',405.437619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18367,12,12,'2023-02-09 10:46:32',405.448623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18368,12,12,'2023-02-09 10:46:32',405.865619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18369,12,12,'2023-02-09 10:46:32',405.885002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18370,12,12,'2023-02-09 10:46:32',406.455618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18371,12,12,'2023-02-09 10:46:32',406.466622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18372,12,12,'2023-02-09 10:46:32',406.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18373,12,12,'2023-02-09 10:46:32',406.941001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18374,12,12,'2023-02-09 10:46:32',407.476625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18375,12,12,'2023-02-09 10:46:32',407.487618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18376,12,12,'2023-02-09 10:46:32',407.905620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18377,12,12,'2023-02-09 10:46:32',407.925003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18378,12,12,'2023-02-09 10:46:32',408.494623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18379,12,12,'2023-02-09 10:46:32',408.505617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18380,12,12,'2023-02-09 10:46:32',408.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18381,12,12,'2023-02-09 10:46:32',408.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18382,12,12,'2023-02-09 10:46:32',409.515620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18383,12,12,'2023-02-09 10:46:32',409.526623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18384,12,12,'2023-02-09 10:46:32',409.945621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18385,12,12,'2023-02-09 10:46:32',409.965999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18386,12,12,'2023-02-09 10:46:32',410.538618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18387,12,12,'2023-02-09 10:46:32',410.549621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18388,12,12,'2023-02-09 10:46:32',410.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18389,12,12,'2023-02-09 10:46:32',410.984994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18390,12,12,'2023-02-09 10:46:32',411.555621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18391,12,12,'2023-02-09 10:46:32',411.566624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18392,12,12,'2023-02-09 10:46:32',411.985622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18393,12,12,'2023-02-09 10:46:32',412.040993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18394,12,12,'2023-02-09 10:46:32',412.577623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18395,12,12,'2023-02-09 10:46:32',412.588617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18396,12,12,'2023-02-09 10:46:32',413.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18397,12,12,'2023-02-09 10:46:32',413.024995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18398,12,12,'2023-02-09 10:46:32',413.598619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18399,12,12,'2023-02-09 10:46:32',413.609623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18400,12,12,'2023-02-09 10:46:32',414.025623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18401,12,12,'2023-02-09 10:46:32',414.044996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18402,12,12,'2023-02-09 10:46:32',414.616618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18403,12,12,'2023-02-09 10:46:32',414.627622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18404,12,12,'2023-02-09 10:46:32',415.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18405,12,12,'2023-02-09 10:46:32',415.078997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18406,12,12,'2023-02-09 10:46:32',415.634617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18407,12,12,'2023-02-09 10:46:32',415.645621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18408,12,12,'2023-02-09 10:46:32',416.065624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18409,12,12,'2023-02-09 10:46:32',416.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18410,12,12,'2023-02-09 10:46:32',416.655623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18411,12,12,'2023-02-09 10:46:32',416.666617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18412,12,12,'2023-02-09 10:46:32',417.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18413,12,12,'2023-02-09 10:46:32',417.140996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18414,12,12,'2023-02-09 10:46:32',417.677625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18415,12,12,'2023-02-09 10:46:32',417.688619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18416,12,12,'2023-02-09 10:46:32',418.105625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18417,12,12,'2023-02-09 10:46:32',418.124998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18418,12,12,'2023-02-09 10:46:32',418.694618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18419,12,12,'2023-02-09 10:46:32',418.705622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18420,12,12,'2023-02-09 10:46:32',419.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18421,12,12,'2023-02-09 10:46:32',419.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18422,12,12,'2023-02-09 10:46:32',419.716621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18423,12,12,'2023-02-09 10:46:32',419.727624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18424,12,12,'2023-02-09 10:46:32',420.145616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18425,12,12,'2023-02-09 10:46:32',420.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18426,12,12,'2023-02-09 10:46:32',420.738623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18427,12,12,'2023-02-09 10:46:32',420.748621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18428,12,12,'2023-02-09 10:46:32',421.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18429,12,12,'2023-02-09 10:46:32',421.184999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18430,12,12,'2023-02-09 10:46:32',421.756622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18431,12,12,'2023-02-09 10:46:32',421.767625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18432,12,12,'2023-02-09 10:46:32',422.185617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18433,12,12,'2023-02-09 10:46:32',422.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18434,12,12,'2023-02-09 10:46:32',422.777618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18435,12,12,'2023-02-09 10:46:32',422.788622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18436,12,12,'2023-02-09 10:46:32',423.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18437,12,12,'2023-02-09 10:46:32',423.225000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18438,12,12,'2023-02-09 10:46:32',423.795617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18439,12,12,'2023-02-09 10:46:32',423.806620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18440,12,12,'2023-02-09 10:46:32',424.225618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18441,12,12,'2023-02-09 10:46:32',424.245001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18442,12,12,'2023-02-09 10:46:32',424.816623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18443,12,12,'2023-02-09 10:46:32',424.827617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18444,12,12,'2023-02-09 10:46:32',425.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18445,12,12,'2023-02-09 10:46:32',425.301996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18446,12,12,'2023-02-09 10:46:32',425.838625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18447,12,12,'2023-02-09 10:46:32',425.849619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18448,12,12,'2023-02-09 10:46:32',426.265619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18449,12,12,'2023-02-09 10:46:32',426.285997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18450,12,12,'2023-02-09 10:46:32',426.855618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18451,12,12,'2023-02-09 10:46:32',426.866622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18452,12,12,'2023-02-09 10:46:32',427.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18453,12,12,'2023-02-09 10:46:32',427.305002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18454,12,12,'2023-02-09 10:46:32',427.877620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18455,12,12,'2023-02-09 10:46:32',427.888624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18456,12,12,'2023-02-09 10:46:32',428.305620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18457,12,12,'2023-02-09 10:46:32',428.324993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18458,12,12,'2023-02-09 10:46:32',428.894623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18459,12,12,'2023-02-09 10:46:32',428.905617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18460,12,12,'2023-02-09 10:46:32',429.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18461,12,12,'2023-02-09 10:46:32',429.344993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18462,12,12,'2023-02-09 10:46:32',429.917621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18463,12,12,'2023-02-09 10:46:32',429.927619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18464,12,12,'2023-02-09 10:46:32',430.345621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18465,12,12,'2023-02-09 10:46:32',430.401002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18466,12,12,'2023-02-09 10:46:32',430.938618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18467,12,12,'2023-02-09 10:46:32',430.948626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18468,12,12,'2023-02-09 10:46:32',431.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18469,12,12,'2023-02-09 10:46:32',431.398995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18470,12,12,'2023-02-09 10:46:32',431.956616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18471,12,12,'2023-02-09 10:46:32',431.967620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18472,12,12,'2023-02-09 10:46:32',432.385622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18473,12,12,'2023-02-09 10:46:32',432.404995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18474,12,12,'2023-02-09 10:46:32',432.978619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18475,12,12,'2023-02-09 10:46:32',432.989622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18476,12,12,'2023-02-09 10:46:32',433.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18477,12,12,'2023-02-09 10:46:32',433.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18478,12,12,'2023-02-09 10:46:32',433.995622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18479,12,12,'2023-02-09 10:46:32',434.006625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18480,12,12,'2023-02-09 10:46:32',434.425623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18481,12,12,'2023-02-09 10:46:32',434.444996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18482,12,12,'2023-02-09 10:46:32',435.017624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18483,12,12,'2023-02-09 10:46:32',435.028618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18484,12,12,'2023-02-09 10:46:32',435.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18485,12,12,'2023-02-09 10:46:32',435.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18486,12,12,'2023-02-09 10:46:32',436.034617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18487,12,12,'2023-02-09 10:46:32',436.045621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18488,12,12,'2023-02-09 10:46:32',436.465624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18489,12,12,'2023-02-09 10:46:32',436.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18490,12,12,'2023-02-09 10:46:32',437.057625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18491,12,12,'2023-02-09 10:46:32',437.067623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18492,12,12,'2023-02-09 10:46:32',437.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18493,12,12,'2023-02-09 10:46:32',437.540996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18494,12,12,'2023-02-09 10:46:32',438.077625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18495,12,12,'2023-02-09 10:46:32',438.088619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18496,12,12,'2023-02-09 10:46:32',438.505625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18497,12,12,'2023-02-09 10:46:32',438.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18498,12,12,'2023-02-09 10:46:32',439.096620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18499,12,12,'2023-02-09 10:46:32',439.106618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18500,12,12,'2023-02-09 10:46:32',439.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18501,12,12,'2023-02-09 10:46:32',439.544998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18502,12,12,'2023-02-09 10:46:32',440.117626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18503,12,12,'2023-02-09 10:46:32',440.128620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18504,12,12,'2023-02-09 10:46:32',440.545626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18505,12,12,'2023-02-09 10:46:32',440.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18506,12,12,'2023-02-09 10:46:32',441.135625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18507,12,12,'2023-02-09 10:46:32',441.146619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18508,12,12,'2023-02-09 10:46:32',441.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18509,12,12,'2023-02-09 10:46:32',441.584999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18510,12,12,'2023-02-09 10:46:32',442.156621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18511,12,12,'2023-02-09 10:46:32',442.167625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18512,12,12,'2023-02-09 10:46:32',442.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18513,12,12,'2023-02-09 10:46:32',442.640998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18514,12,12,'2023-02-09 10:46:32',443.178624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18515,12,12,'2023-02-09 10:46:32',443.189617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18516,12,12,'2023-02-09 10:46:32',443.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18517,12,12,'2023-02-09 10:46:32',443.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18518,12,12,'2023-02-09 10:46:32',444.195617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18519,12,12,'2023-02-09 10:46:32',444.206620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18520,12,12,'2023-02-09 10:46:32',444.625618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18521,12,12,'2023-02-09 10:46:32',444.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18522,12,12,'2023-02-09 10:46:32',445.217619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18523,12,12,'2023-02-09 10:46:32',445.228623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18524,12,12,'2023-02-09 10:46:32',445.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18525,12,12,'2023-02-09 10:46:32',445.665001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18526,12,12,'2023-02-09 10:46:32',446.234622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18527,12,12,'2023-02-09 10:46:32',446.245626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18528,12,12,'2023-02-09 10:46:32',446.665619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18529,12,12,'2023-02-09 10:46:32',446.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18530,12,12,'2023-02-09 10:46:32',447.256624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18531,12,12,'2023-02-09 10:46:32',447.267618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18532,12,12,'2023-02-09 10:46:32',447.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18533,12,12,'2023-02-09 10:46:32',447.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18534,12,12,'2023-02-09 10:46:32',448.278626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18535,12,12,'2023-02-09 10:46:32',448.288624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18536,12,12,'2023-02-09 10:46:32',448.705620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18537,12,12,'2023-02-09 10:46:32',448.725003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18538,12,12,'2023-02-09 10:46:32',449.296625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18539,12,12,'2023-02-09 10:46:32',449.306623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18540,12,12,'2023-02-09 10:46:32',449.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18541,12,12,'2023-02-09 10:46:32',449.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18542,12,12,'2023-02-09 10:46:32',450.318617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18543,12,12,'2023-02-09 10:46:32',450.328625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18544,12,12,'2023-02-09 10:46:32',450.745621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18545,12,12,'2023-02-09 10:46:32',450.801002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18546,12,12,'2023-02-09 10:46:32',451.335620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18547,12,12,'2023-02-09 10:46:32',451.346624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18548,12,12,'2023-02-09 10:46:32',451.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18549,12,12,'2023-02-09 10:46:32',451.784994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18550,12,12,'2023-02-09 10:46:32',452.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18551,12,12,'2023-02-09 10:46:32',452.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18552,12,12,'2023-02-09 10:46:32',452.785622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18553,12,12,'2023-02-09 10:46:32',452.804995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18554,12,12,'2023-02-09 10:46:32',453.374625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18555,12,12,'2023-02-09 10:46:32',453.385619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18556,12,12,'2023-02-09 10:46:32',453.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18557,12,12,'2023-02-09 10:46:32',453.826001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18558,12,12,'2023-02-09 10:46:32',454.396617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18559,12,12,'2023-02-09 10:46:32',454.407621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18560,12,12,'2023-02-09 10:46:32',454.825623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18561,12,12,'2023-02-09 10:46:32',454.880994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18562,12,12,'2023-02-09 10:46:32',455.417624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18563,12,12,'2023-02-09 10:46:32',455.428618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18564,12,12,'2023-02-09 10:46:32',455.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18565,12,12,'2023-02-09 10:46:32',455.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18566,12,12,'2023-02-09 10:46:32',456.435623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18567,12,12,'2023-02-09 10:46:32',456.447622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18568,12,12,'2023-02-09 10:46:32',456.865624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18569,12,12,'2023-02-09 10:46:32',456.884997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18570,12,12,'2023-02-09 10:46:32',457.457625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18571,12,12,'2023-02-09 10:46:32',457.467623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18572,12,12,'2023-02-09 10:46:32',457.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18573,12,12,'2023-02-09 10:46:32',457.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18574,12,12,'2023-02-09 10:46:32',458.475624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18575,12,12,'2023-02-09 10:46:32',458.486617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18576,12,12,'2023-02-09 10:46:32',458.905625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18577,12,12,'2023-02-09 10:46:32',458.938999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18578,12,12,'2023-02-09 10:46:32',459.496620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18579,12,12,'2023-02-09 10:46:32',459.507624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18580,12,12,'2023-02-09 10:46:32',459.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18581,12,12,'2023-02-09 10:46:32',459.944998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18582,12,12,'2023-02-09 10:46:32',460.518622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18583,12,12,'2023-02-09 10:46:32',460.529626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18584,12,12,'2023-02-09 10:46:32',460.945616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18585,12,12,'2023-02-09 10:46:32',460.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18586,12,12,'2023-02-09 10:46:32',461.535625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18587,12,12,'2023-02-09 10:46:32',461.544617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18588,12,12,'2023-02-09 10:46:32',461.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18589,12,12,'2023-02-09 10:46:32',462.020998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18590,12,12,'2023-02-09 10:46:32',462.557617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18591,12,12,'2023-02-09 10:46:32',462.570623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18592,12,12,'2023-02-09 10:46:32',462.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18593,12,12,'2023-02-09 10:46:32',463.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18594,12,12,'2023-02-09 10:46:32',463.574620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18595,12,12,'2023-02-09 10:46:32',463.585624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18596,12,12,'2023-02-09 10:46:32',464.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18597,12,12,'2023-02-09 10:46:32',464.025000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18598,12,12,'2023-02-09 10:46:32',464.596622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18599,12,12,'2023-02-09 10:46:32',464.607616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18600,12,12,'2023-02-09 10:46:32',465.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18601,12,12,'2023-02-09 10:46:32',465.045996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18602,12,12,'2023-02-09 10:46:32',465.617619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18603,12,12,'2023-02-09 10:46:32',465.628623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18604,12,12,'2023-02-09 10:46:32',466.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18605,12,12,'2023-02-09 10:46:32',466.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18606,12,12,'2023-02-09 10:46:32',466.636624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18607,12,12,'2023-02-09 10:46:32',466.647617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18608,12,12,'2023-02-09 10:46:32',467.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18609,12,12,'2023-02-09 10:46:32',467.121000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18610,12,12,'2023-02-09 10:46:32',467.658626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18611,12,12,'2023-02-09 10:46:32',467.669619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18612,12,12,'2023-02-09 10:46:32',468.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18613,12,12,'2023-02-09 10:46:32',468.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18614,12,12,'2023-02-09 10:46:32',468.675619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18615,12,12,'2023-02-09 10:46:32',468.685617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18616,12,12,'2023-02-09 10:46:32',469.105620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18617,12,12,'2023-02-09 10:46:32',469.124993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18618,12,12,'2023-02-09 10:46:32',469.697621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18619,12,12,'2023-02-09 10:46:32',469.708625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18620,12,12,'2023-02-09 10:46:32',470.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18621,12,12,'2023-02-09 10:46:32',470.158994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18622,12,12,'2023-02-09 10:46:32',470.714624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18623,12,12,'2023-02-09 10:46:32',470.725618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18624,12,12,'2023-02-09 10:46:32',471.145621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18625,12,12,'2023-02-09 10:46:32',471.164994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18626,12,12,'2023-02-09 10:46:32',471.736626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18627,12,12,'2023-02-09 10:46:32',471.747620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18628,12,12,'2023-02-09 10:46:32',472.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18629,12,12,'2023-02-09 10:46:32',472.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18630,12,12,'2023-02-09 10:46:32',472.757622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18631,12,12,'2023-02-09 10:46:32',472.768626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18632,12,12,'2023-02-09 10:46:32',473.185622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18633,12,12,'2023-02-09 10:46:32',473.204995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18634,12,12,'2023-02-09 10:46:32',473.775621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18635,12,12,'2023-02-09 10:46:32',473.786625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18636,12,12,'2023-02-09 10:46:32',474.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18637,12,12,'2023-02-09 10:46:32',474.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18638,12,12,'2023-02-09 10:46:32',474.796617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18639,12,12,'2023-02-09 10:46:32',474.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18640,12,12,'2023-02-09 10:46:32',475.225623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18641,12,12,'2023-02-09 10:46:32',475.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18642,12,12,'2023-02-09 10:46:32',475.815622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18643,12,12,'2023-02-09 10:46:32',475.825620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18644,12,12,'2023-02-09 10:46:32',476.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18645,12,12,'2023-02-09 10:46:32',476.264996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18646,12,12,'2023-02-09 10:46:32',476.836618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18647,12,12,'2023-02-09 10:46:32',476.846616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18648,12,12,'2023-02-09 10:46:32',477.265624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18649,12,12,'2023-02-09 10:46:32',477.320995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18650,12,12,'2023-02-09 10:46:32',477.858621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18651,12,12,'2023-02-09 10:46:32',477.869624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18652,12,12,'2023-02-09 10:46:32',478.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18653,12,12,'2023-02-09 10:46:32',478.304997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18654,12,12,'2023-02-09 10:46:32',478.875624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18655,12,12,'2023-02-09 10:46:32',478.886617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18656,12,12,'2023-02-09 10:46:32',479.305625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18657,12,12,'2023-02-09 10:46:32',479.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18658,12,12,'2023-02-09 10:46:32',479.897626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18659,12,12,'2023-02-09 10:46:32',479.908620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18660,12,12,'2023-02-09 10:46:32',480.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18661,12,12,'2023-02-09 10:46:32',480.344998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18662,12,12,'2023-02-09 10:46:32',480.914619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18663,12,12,'2023-02-09 10:46:32',480.925623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18664,12,12,'2023-02-09 10:46:32',481.345626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18665,12,12,'2023-02-09 10:46:32',481.365994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18666,12,12,'2023-02-09 10:46:32',481.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18667,12,12,'2023-02-09 10:46:32',481.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18668,12,12,'2023-02-09 10:46:32',482.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18669,12,12,'2023-02-09 10:46:32',482.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18670,12,12,'2023-02-09 10:46:32',482.957617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18671,12,12,'2023-02-09 10:46:32',482.968621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18672,12,12,'2023-02-09 10:46:32',483.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18673,12,12,'2023-02-09 10:46:32',483.440998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18674,12,12,'2023-02-09 10:46:32',483.976622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18675,12,12,'2023-02-09 10:46:32',483.986620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18676,12,12,'2023-02-09 10:46:32',484.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18677,12,12,'2023-02-09 10:46:32',484.425000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18678,12,12,'2023-02-09 10:46:32',484.998624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18679,12,12,'2023-02-09 10:46:32',485.009618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18680,12,12,'2023-02-09 10:46:32',485.425618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18681,12,12,'2023-02-09 10:46:32',485.445001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18682,12,12,'2023-02-09 10:46:32',486.015617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18683,12,12,'2023-02-09 10:46:32',486.026621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18684,12,12,'2023-02-09 10:46:32',486.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18685,12,12,'2023-02-09 10:46:32',486.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18686,12,12,'2023-02-09 10:46:32',487.037619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18687,12,12,'2023-02-09 10:46:32',487.049619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18688,12,12,'2023-02-09 10:46:32',487.465619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18689,12,12,'2023-02-09 10:46:32',487.485002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18690,12,12,'2023-02-09 10:46:32',488.058626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18691,12,12,'2023-02-09 10:46:32',488.068624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18692,12,12,'2023-02-09 10:46:32',488.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18693,12,12,'2023-02-09 10:46:32',488.505002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18694,12,12,'2023-02-09 10:46:32',489.076624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18695,12,12,'2023-02-09 10:46:32',489.087618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18696,12,12,'2023-02-09 10:46:32',489.505620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18697,12,12,'2023-02-09 10:46:32',489.561001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18698,12,12,'2023-02-09 10:46:32',490.097621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18699,12,12,'2023-02-09 10:46:32',490.108625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18700,12,12,'2023-02-09 10:46:32',490.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18701,12,12,'2023-02-09 10:46:32',490.544993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18702,12,12,'2023-02-09 10:46:32',491.115620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18703,12,12,'2023-02-09 10:46:32',491.126623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18704,12,12,'2023-02-09 10:46:32',491.545621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18705,12,12,'2023-02-09 10:46:32',491.564994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18706,12,12,'2023-02-09 10:46:32',492.136626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18707,12,12,'2023-02-09 10:46:32',492.147620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18708,12,12,'2023-02-09 10:46:32',492.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18709,12,12,'2023-02-09 10:46:32',492.586000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18710,12,12,'2023-02-09 10:46:32',493.155621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18711,12,12,'2023-02-09 10:46:32',493.166624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18712,12,12,'2023-02-09 10:46:32',493.585622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18713,12,12,'2023-02-09 10:46:32',493.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18714,12,12,'2023-02-09 10:46:32',494.176617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18715,12,12,'2023-02-09 10:46:32',494.186625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18716,12,12,'2023-02-09 10:46:32',494.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18717,12,12,'2023-02-09 10:46:32',494.624995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18718,12,12,'2023-02-09 10:46:32',495.198619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18719,12,12,'2023-02-09 10:46:32',495.209623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18720,12,12,'2023-02-09 10:46:32',495.625623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18721,12,12,'2023-02-09 10:46:32',495.680994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18722,12,12,'2023-02-09 10:46:32',496.215622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18723,12,12,'2023-02-09 10:46:32',496.226626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18724,12,12,'2023-02-09 10:46:32',496.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18725,12,12,'2023-02-09 10:46:32',496.664996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18726,12,12,'2023-02-09 10:46:32',497.237624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18727,12,12,'2023-02-09 10:46:32',497.248618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18728,12,12,'2023-02-09 10:46:32',497.665624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18729,12,12,'2023-02-09 10:46:32',497.684997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18730,12,12,'2023-02-09 10:46:32',498.258621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18731,12,12,'2023-02-09 10:46:32',498.269624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18732,12,12,'2023-02-09 10:46:32',498.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18733,12,12,'2023-02-09 10:46:32',498.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18734,12,12,'2023-02-09 10:46:32',499.276619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18735,12,12,'2023-02-09 10:46:32',499.287623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18736,12,12,'2023-02-09 10:46:32',499.705625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18737,12,12,'2023-02-09 10:46:32',499.724998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18738,12,12,'2023-02-09 10:46:32',500.294618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18739,12,12,'2023-02-09 10:46:32',500.307624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18740,12,12,'2023-02-09 10:46:32',500.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18741,12,12,'2023-02-09 10:46:32',500.780997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18742,12,12,'2023-02-09 10:46:32',501.315625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18743,12,12,'2023-02-09 10:46:32',501.326618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18744,12,12,'2023-02-09 10:46:32',501.745616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18745,12,12,'2023-02-09 10:46:32',501.764999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18746,12,12,'2023-02-09 10:46:32',502.338623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18747,12,12,'2023-02-09 10:46:32',502.349616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18748,12,12,'2023-02-09 10:46:32',502.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18749,12,12,'2023-02-09 10:46:32',502.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18750,12,12,'2023-02-09 10:46:32',503.355626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18751,12,12,'2023-02-09 10:46:32',503.366619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18752,12,12,'2023-02-09 10:46:32',503.785617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18753,12,12,'2023-02-09 10:46:32',503.805000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18754,12,12,'2023-02-09 10:46:32',504.377618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18755,12,12,'2023-02-09 10:46:32',504.388622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18756,12,12,'2023-02-09 10:46:32',504.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18757,12,12,'2023-02-09 10:46:32',504.825000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18758,12,12,'2023-02-09 10:46:32',505.398624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18759,12,12,'2023-02-09 10:46:32',505.409618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18760,12,12,'2023-02-09 10:46:32',505.825618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18761,12,12,'2023-02-09 10:46:32',505.845001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18762,12,12,'2023-02-09 10:46:32',506.416623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18763,12,12,'2023-02-09 10:46:32',506.427617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18764,12,12,'2023-02-09 10:46:32',506.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18765,12,12,'2023-02-09 10:46:32',506.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18766,12,12,'2023-02-09 10:46:32',507.437619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18767,12,12,'2023-02-09 10:46:32',507.448623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18768,12,12,'2023-02-09 10:46:32',507.865619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18769,12,12,'2023-02-09 10:46:32',507.885002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18770,12,12,'2023-02-09 10:46:32',508.455618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18771,12,12,'2023-02-09 10:46:32',508.466622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18772,12,12,'2023-02-09 10:46:32',508.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18773,12,12,'2023-02-09 10:46:32',508.918993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18774,12,12,'2023-02-09 10:46:32',509.476624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18775,12,12,'2023-02-09 10:46:32',509.487618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18776,12,12,'2023-02-09 10:46:32',509.905620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18777,12,12,'2023-02-09 10:46:32',509.961001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18778,12,12,'2023-02-09 10:46:32',510.494623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18779,12,12,'2023-02-09 10:46:32',510.505617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18780,12,12,'2023-02-09 10:46:32',510.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18781,12,12,'2023-02-09 10:46:32',510.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18782,12,12,'2023-02-09 10:46:32',511.515620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18783,12,12,'2023-02-09 10:46:32',511.526623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18784,12,12,'2023-02-09 10:46:32',511.945621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18785,12,12,'2023-02-09 10:46:32',511.964994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18786,12,12,'2023-02-09 10:46:32',512.538618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18787,12,12,'2023-02-09 10:46:32',512.549621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18788,12,12,'2023-02-09 10:46:32',512.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18789,12,12,'2023-02-09 10:46:32',512.984994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18790,12,12,'2023-02-09 10:46:32',513.555621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18791,12,12,'2023-02-09 10:46:32',513.566624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18792,12,12,'2023-02-09 10:46:32',513.985622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18793,12,12,'2023-02-09 10:46:32',514.004995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18794,12,12,'2023-02-09 10:46:32',514.577623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18795,12,12,'2023-02-09 10:46:32',514.588616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18796,12,12,'2023-02-09 10:46:32',515.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18797,12,12,'2023-02-09 10:46:32',515.024995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18798,12,12,'2023-02-09 10:46:32',515.598619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18799,12,12,'2023-02-09 10:46:32',515.609623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18800,12,12,'2023-02-09 10:46:32',516.025623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18801,12,12,'2023-02-09 10:46:32',516.044996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18802,12,12,'2023-02-09 10:46:32',516.616618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18803,12,12,'2023-02-09 10:46:32',516.627622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18804,12,12,'2023-02-09 10:46:32',517.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18805,12,12,'2023-02-09 10:46:32',517.100995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18806,12,12,'2023-02-09 10:46:32',517.634617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18807,12,12,'2023-02-09 10:46:32',517.645621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18808,12,12,'2023-02-09 10:46:32',518.065624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18809,12,12,'2023-02-09 10:46:32',518.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18810,12,12,'2023-02-09 10:46:32',518.655623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18811,12,12,'2023-02-09 10:46:32',518.666617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18812,12,12,'2023-02-09 10:46:32',519.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18813,12,12,'2023-02-09 10:46:32',519.104997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18814,12,12,'2023-02-09 10:46:32',519.678621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18815,12,12,'2023-02-09 10:46:32',519.688619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18816,12,12,'2023-02-09 10:46:32',520.105625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18817,12,12,'2023-02-09 10:46:32',520.125993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18818,12,12,'2023-02-09 10:46:32',520.695624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18819,12,12,'2023-02-09 10:46:32',520.706618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18820,12,12,'2023-02-09 10:46:32',521.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18821,12,12,'2023-02-09 10:46:32',521.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18822,12,12,'2023-02-09 10:46:32',521.717626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18823,12,12,'2023-02-09 10:46:32',521.727624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18824,12,12,'2023-02-09 10:46:32',522.145626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18825,12,12,'2023-02-09 10:46:32',522.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18826,12,12,'2023-02-09 10:46:32',522.738623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18827,12,12,'2023-02-09 10:46:32',522.749626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18828,12,12,'2023-02-09 10:46:32',523.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18829,12,12,'2023-02-09 10:46:32',523.184999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18830,12,12,'2023-02-09 10:46:32',523.756621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18831,12,12,'2023-02-09 10:46:32',523.767625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18832,12,12,'2023-02-09 10:46:32',524.185617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18833,12,12,'2023-02-09 10:46:32',524.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18834,12,12,'2023-02-09 10:46:32',524.777618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18835,12,12,'2023-02-09 10:46:32',524.788621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18836,12,12,'2023-02-09 10:46:32',525.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18837,12,12,'2023-02-09 10:46:32',525.239001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18838,12,12,'2023-02-09 10:46:32',525.795617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18839,12,12,'2023-02-09 10:46:32',525.806620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18840,12,12,'2023-02-09 10:46:32',526.225618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18841,12,12,'2023-02-09 10:46:32',526.280999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18842,12,12,'2023-02-09 10:46:32',526.816623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18843,12,12,'2023-02-09 10:46:32',526.827617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18844,12,12,'2023-02-09 10:46:32',527.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18845,12,12,'2023-02-09 10:46:32',527.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18846,12,12,'2023-02-09 10:46:32',527.834622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18847,12,12,'2023-02-09 10:46:32',527.845626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18848,12,12,'2023-02-09 10:46:32',528.265619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18849,12,12,'2023-02-09 10:46:32',528.285002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18850,12,12,'2023-02-09 10:46:32',528.855618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18851,12,12,'2023-02-09 10:46:32',528.866622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18852,12,12,'2023-02-09 10:46:32',529.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18853,12,12,'2023-02-09 10:46:32',529.305002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18854,12,12,'2023-02-09 10:46:32',529.878626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18855,12,12,'2023-02-09 10:46:32',529.889620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18856,12,12,'2023-02-09 10:46:32',530.305620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18857,12,12,'2023-02-09 10:46:32',530.325003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18858,12,12,'2023-02-09 10:46:32',530.895619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18859,12,12,'2023-02-09 10:46:32',530.906623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18860,12,12,'2023-02-09 10:46:32',531.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18861,12,12,'2023-02-09 10:46:32',531.344993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18862,12,12,'2023-02-09 10:46:32',531.917621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18863,12,12,'2023-02-09 10:46:32',531.928625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18864,12,12,'2023-02-09 10:46:32',532.345621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18865,12,12,'2023-02-09 10:46:32',532.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18866,12,12,'2023-02-09 10:46:32',532.934624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18867,12,12,'2023-02-09 10:46:32',532.945618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18868,12,12,'2023-02-09 10:46:32',533.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18869,12,12,'2023-02-09 10:46:32',533.421003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18870,12,12,'2023-02-09 10:46:32',533.956626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18871,12,12,'2023-02-09 10:46:32',533.967620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18872,12,12,'2023-02-09 10:46:32',534.385622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18873,12,12,'2023-02-09 10:46:32',534.404995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18874,12,12,'2023-02-09 10:46:32',534.974625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18875,12,12,'2023-02-09 10:46:32',534.985619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18876,12,12,'2023-02-09 10:46:32',535.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18877,12,12,'2023-02-09 10:46:32',535.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18878,12,12,'2023-02-09 10:46:32',535.995622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18879,12,12,'2023-02-09 10:46:32',536.006625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18880,12,12,'2023-02-09 10:46:32',536.425623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18881,12,12,'2023-02-09 10:46:32',536.458997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18882,12,12,'2023-02-09 10:46:32',537.018620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18883,12,12,'2023-02-09 10:46:32',537.029623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18884,12,12,'2023-02-09 10:46:32',537.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18885,12,12,'2023-02-09 10:46:32',537.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18886,12,12,'2023-02-09 10:46:32',538.035623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18887,12,12,'2023-02-09 10:46:32',538.046626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18888,12,12,'2023-02-09 10:46:32',538.465624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18889,12,12,'2023-02-09 10:46:32',538.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18890,12,12,'2023-02-09 10:46:32',539.057625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18891,12,12,'2023-02-09 10:46:32',539.068618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18892,12,12,'2023-02-09 10:46:32',539.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18893,12,12,'2023-02-09 10:46:32',539.504997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18894,12,12,'2023-02-09 10:46:32',540.078621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18895,12,12,'2023-02-09 10:46:32',540.089625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18896,12,12,'2023-02-09 10:46:32',540.505625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18897,12,12,'2023-02-09 10:46:32',540.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18898,12,12,'2023-02-09 10:46:32',541.096620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18899,12,12,'2023-02-09 10:46:32',541.107624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18900,12,12,'2023-02-09 10:46:32',541.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18901,12,12,'2023-02-09 10:46:32',541.544998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18902,12,12,'2023-02-09 10:46:32',542.117616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18903,12,12,'2023-02-09 10:46:32',542.128620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18904,12,12,'2023-02-09 10:46:32',542.545616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18905,12,12,'2023-02-09 10:46:32',542.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18906,12,12,'2023-02-09 10:46:32',543.135625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18907,12,12,'2023-02-09 10:46:32',543.146619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18908,12,12,'2023-02-09 10:46:32',543.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18909,12,12,'2023-02-09 10:46:32',543.620998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18910,12,12,'2023-02-09 10:46:32',544.156621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18911,12,12,'2023-02-09 10:46:32',544.166619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18912,12,12,'2023-02-09 10:46:32',544.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18913,12,12,'2023-02-09 10:46:32',544.605000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18914,12,12,'2023-02-09 10:46:32',545.174620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18915,12,12,'2023-02-09 10:46:32',545.185624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18916,12,12,'2023-02-09 10:46:32',545.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18917,12,12,'2023-02-09 10:46:32',545.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18918,12,12,'2023-02-09 10:46:32',546.195617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18919,12,12,'2023-02-09 10:46:32',546.206620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18920,12,12,'2023-02-09 10:46:32',546.625618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18921,12,12,'2023-02-09 10:46:32',546.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18922,12,12,'2023-02-09 10:46:32',547.218625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18923,12,12,'2023-02-09 10:46:32',547.228622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18924,12,12,'2023-02-09 10:46:32',547.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18925,12,12,'2023-02-09 10:46:32',547.665997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18926,12,12,'2023-02-09 10:46:32',548.234622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18927,12,12,'2023-02-09 10:46:32',548.245626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18928,12,12,'2023-02-09 10:46:32',548.665619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18929,12,12,'2023-02-09 10:46:32',548.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18930,12,12,'2023-02-09 10:46:32',549.257620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18931,12,12,'2023-02-09 10:46:32',549.268623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18932,12,12,'2023-02-09 10:46:32',549.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18933,12,12,'2023-02-09 10:46:32',549.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18934,12,12,'2023-02-09 10:46:32',550.278626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18935,12,12,'2023-02-09 10:46:32',550.288624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18936,12,12,'2023-02-09 10:46:32',550.705620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18937,12,12,'2023-02-09 10:46:32',550.724993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18938,12,12,'2023-02-09 10:46:32',551.296625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18939,12,12,'2023-02-09 10:46:32',551.307619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18940,12,12,'2023-02-09 10:46:32',551.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18941,12,12,'2023-02-09 10:46:32',551.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18942,12,12,'2023-02-09 10:46:32',552.314624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18943,12,12,'2023-02-09 10:46:32',552.325618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18944,12,12,'2023-02-09 10:46:32',552.745621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18945,12,12,'2023-02-09 10:46:32',552.764994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18946,12,12,'2023-02-09 10:46:32',553.335620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18947,12,12,'2023-02-09 10:46:32',553.346624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18948,12,12,'2023-02-09 10:46:32',553.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18949,12,12,'2023-02-09 10:46:32',553.784994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18950,12,12,'2023-02-09 10:46:32',554.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18951,12,12,'2023-02-09 10:46:32',554.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18952,12,12,'2023-02-09 10:46:32',554.785622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18953,12,12,'2023-02-09 10:46:32',554.840993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18954,12,12,'2023-02-09 10:46:32',555.374625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18955,12,12,'2023-02-09 10:46:32',555.385619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18956,12,12,'2023-02-09 10:46:32',555.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18957,12,12,'2023-02-09 10:46:32',555.824995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18958,12,12,'2023-02-09 10:46:32',556.397623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18959,12,12,'2023-02-09 10:46:32',556.408617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18960,12,12,'2023-02-09 10:46:32',556.825623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18961,12,12,'2023-02-09 10:46:32',556.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18962,12,12,'2023-02-09 10:46:32',557.418620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18963,12,12,'2023-02-09 10:46:32',557.429623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18964,12,12,'2023-02-09 10:46:32',557.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18965,12,12,'2023-02-09 10:46:32',557.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18966,12,12,'2023-02-09 10:46:32',558.436618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18967,12,12,'2023-02-09 10:46:32',558.447622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18968,12,12,'2023-02-09 10:46:32',558.865624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18969,12,12,'2023-02-09 10:46:32',558.920995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18970,12,12,'2023-02-09 10:46:32',559.457625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18971,12,12,'2023-02-09 10:46:32',559.468618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18972,12,12,'2023-02-09 10:46:32',559.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18973,12,12,'2023-02-09 10:46:32',559.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18974,12,12,'2023-02-09 10:46:32',560.475624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18975,12,12,'2023-02-09 10:46:32',560.486617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18976,12,12,'2023-02-09 10:46:32',560.905625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18977,12,12,'2023-02-09 10:46:32',560.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18978,12,12,'2023-02-09 10:46:32',561.496620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18979,12,12,'2023-02-09 10:46:32',561.507624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18980,12,12,'2023-02-09 10:46:32',561.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18981,12,12,'2023-02-09 10:46:32',561.944998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18982,12,12,'2023-02-09 10:46:32',562.514619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18983,12,12,'2023-02-09 10:46:32',562.525623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18984,12,12,'2023-02-09 10:46:32',562.945626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18985,12,12,'2023-02-09 10:46:32',562.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18986,12,12,'2023-02-09 10:46:32',563.535625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18987,12,12,'2023-02-09 10:46:32',563.546619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18988,12,12,'2023-02-09 10:46:32',563.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18989,12,12,'2023-02-09 10:46:32',563.999000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18990,12,12,'2023-02-09 10:46:32',564.557617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18991,12,12,'2023-02-09 10:46:32',564.568621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18992,12,12,'2023-02-09 10:46:32',564.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18993,12,12,'2023-02-09 10:46:32',565.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18994,12,12,'2023-02-09 10:46:32',565.574620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18995,12,12,'2023-02-09 10:46:32',565.585624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18996,12,12,'2023-02-09 10:46:32',566.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18997,12,12,'2023-02-09 10:46:32',566.025000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18998,12,12,'2023-02-09 10:46:32',566.597618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18999,12,12,'2023-02-09 10:46:32',566.608622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19000,12,12,'2023-02-09 10:46:32',567.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19001,12,12,'2023-02-09 10:46:32',567.080999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19002,12,12,'2023-02-09 10:46:32',567.618625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19003,12,12,'2023-02-09 10:46:32',567.628622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19004,12,12,'2023-02-09 10:46:32',568.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19005,12,12,'2023-02-09 10:46:32',568.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19006,12,12,'2023-02-09 10:46:32',568.636623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19007,12,12,'2023-02-09 10:46:32',568.647617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19008,12,12,'2023-02-09 10:46:32',569.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19009,12,12,'2023-02-09 10:46:32',569.085002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19010,12,12,'2023-02-09 10:46:32',569.654622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19011,12,12,'2023-02-09 10:46:32',569.665626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19012,12,12,'2023-02-09 10:46:32',570.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19013,12,12,'2023-02-09 10:46:32',570.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19014,12,12,'2023-02-09 10:46:32',570.675619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19015,12,12,'2023-02-09 10:46:32',570.686622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19016,12,12,'2023-02-09 10:46:32',571.105620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19017,12,12,'2023-02-09 10:46:32',571.125003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19018,12,12,'2023-02-09 10:46:32',571.697621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19019,12,12,'2023-02-09 10:46:32',571.708624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19020,12,12,'2023-02-09 10:46:32',572.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19021,12,12,'2023-02-09 10:46:32',572.144993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19022,12,12,'2023-02-09 10:46:32',572.714624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19023,12,12,'2023-02-09 10:46:32',572.725618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19024,12,12,'2023-02-09 10:46:32',573.145621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19025,12,12,'2023-02-09 10:46:32',573.164994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19026,12,12,'2023-02-09 10:46:32',573.737622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19027,12,12,'2023-02-09 10:46:32',573.748626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19028,12,12,'2023-02-09 10:46:32',574.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19029,12,12,'2023-02-09 10:46:32',574.221999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19030,12,12,'2023-02-09 10:46:32',574.758618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19031,12,12,'2023-02-09 10:46:32',574.769622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19032,12,12,'2023-02-09 10:46:32',575.185622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19033,12,12,'2023-02-09 10:46:32',575.206000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19034,12,12,'2023-02-09 10:46:32',575.776617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19035,12,12,'2023-02-09 10:46:32',575.787621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19036,12,12,'2023-02-09 10:46:32',576.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19037,12,12,'2023-02-09 10:46:32',576.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19038,12,12,'2023-02-09 10:46:32',576.797623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19039,12,12,'2023-02-09 10:46:32',576.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19040,12,12,'2023-02-09 10:46:32',577.225623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19041,12,12,'2023-02-09 10:46:32',577.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19042,12,12,'2023-02-09 10:46:32',577.815622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19043,12,12,'2023-02-09 10:46:32',577.826626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19044,12,12,'2023-02-09 10:46:32',578.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19045,12,12,'2023-02-09 10:46:32',578.264996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19046,12,12,'2023-02-09 10:46:32',578.836618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19047,12,12,'2023-02-09 10:46:32',578.847622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19048,12,12,'2023-02-09 10:46:32',579.265624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19049,12,12,'2023-02-09 10:46:32',579.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19050,12,12,'2023-02-09 10:46:32',579.858621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19051,12,12,'2023-02-09 10:46:32',579.869624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19052,12,12,'2023-02-09 10:46:32',580.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19053,12,12,'2023-02-09 10:46:32',580.340996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19054,12,12,'2023-02-09 10:46:32',580.875624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19055,12,12,'2023-02-09 10:46:32',580.886617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19056,12,12,'2023-02-09 10:46:32',581.305625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19057,12,12,'2023-02-09 10:46:32',581.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19058,12,12,'2023-02-09 10:46:32',581.897626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19059,12,12,'2023-02-09 10:46:32',581.908619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19060,12,12,'2023-02-09 10:46:32',582.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19061,12,12,'2023-02-09 10:46:32',582.344998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19062,12,12,'2023-02-09 10:46:32',582.914619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19063,12,12,'2023-02-09 10:46:32',582.925623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19064,12,12,'2023-02-09 10:46:32',583.345616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19065,12,12,'2023-02-09 10:46:32',583.364999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19066,12,12,'2023-02-09 10:46:32',583.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19067,12,12,'2023-02-09 10:46:32',583.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19068,12,12,'2023-02-09 10:46:32',584.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19069,12,12,'2023-02-09 10:46:32',584.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19070,12,12,'2023-02-09 10:46:32',584.958623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19071,12,12,'2023-02-09 10:46:32',584.968621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19072,12,12,'2023-02-09 10:46:32',585.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19073,12,12,'2023-02-09 10:46:32',585.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19074,12,12,'2023-02-09 10:46:32',585.976622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19075,12,12,'2023-02-09 10:46:32',585.987626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19076,12,12,'2023-02-09 10:46:32',586.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19077,12,12,'2023-02-09 10:46:32',586.425000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19078,12,12,'2023-02-09 10:46:32',586.998624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19079,12,12,'2023-02-09 10:46:32',587.009618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19080,12,12,'2023-02-09 10:46:32',587.425618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19081,12,12,'2023-02-09 10:46:32',587.480999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19082,12,12,'2023-02-09 10:46:32',588.015617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19083,12,12,'2023-02-09 10:46:32',588.026621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19084,12,12,'2023-02-09 10:46:32',588.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19085,12,12,'2023-02-09 10:46:32',588.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19086,12,12,'2023-02-09 10:46:32',589.037619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19087,12,12,'2023-02-09 10:46:32',589.048623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19088,12,12,'2023-02-09 10:46:32',589.465619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19089,12,12,'2023-02-09 10:46:32',589.485002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19090,12,12,'2023-02-09 10:46:32',590.054622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19091,12,12,'2023-02-09 10:46:32',590.065626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19092,12,12,'2023-02-09 10:46:32',590.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19093,12,12,'2023-02-09 10:46:32',590.505002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19094,12,12,'2023-02-09 10:46:32',591.076624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19095,12,12,'2023-02-09 10:46:32',591.087618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19096,12,12,'2023-02-09 10:46:32',591.505620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19097,12,12,'2023-02-09 10:46:32',591.538994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19098,12,12,'2023-02-09 10:46:32',592.097621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19099,12,12,'2023-02-09 10:46:32',592.108624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19100,12,12,'2023-02-09 10:46:32',592.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19101,12,12,'2023-02-09 10:46:32',592.544993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19102,12,12,'2023-02-09 10:46:32',593.116625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19103,12,12,'2023-02-09 10:46:32',593.126623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19104,12,12,'2023-02-09 10:46:32',593.545621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19105,12,12,'2023-02-09 10:46:32',593.564994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19106,12,12,'2023-02-09 10:46:32',594.137622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19107,12,12,'2023-02-09 10:46:32',594.148625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19108,12,12,'2023-02-09 10:46:32',594.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19109,12,12,'2023-02-09 10:46:32',594.620993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19110,12,12,'2023-02-09 10:46:32',595.155621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19111,12,12,'2023-02-09 10:46:32',595.166624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19112,12,12,'2023-02-09 10:46:32',595.585622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19113,12,12,'2023-02-09 10:46:32',595.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19114,12,12,'2023-02-09 10:46:32',596.176617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19115,12,12,'2023-02-09 10:46:32',596.187621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19116,12,12,'2023-02-09 10:46:32',596.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19117,12,12,'2023-02-09 10:46:32',596.624995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19118,12,12,'2023-02-09 10:46:32',597.194626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19119,12,12,'2023-02-09 10:46:32',597.205620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19120,12,12,'2023-02-09 10:46:32',597.625623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19121,12,12,'2023-02-09 10:46:32',597.644996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19122,12,12,'2023-02-09 10:46:32',598.215622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19123,12,12,'2023-02-09 10:46:32',598.226626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19124,12,12,'2023-02-09 10:46:32',598.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19125,12,12,'2023-02-09 10:46:32',598.664996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19126,12,12,'2023-02-09 10:46:32',599.237624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19127,12,12,'2023-02-09 10:46:32',599.248618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19128,12,12,'2023-02-09 10:46:32',599.665624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19129,12,12,'2023-02-09 10:46:32',599.684997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19130,12,12,'2023-02-09 10:46:32',600.254617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19131,12,12,'2023-02-09 10:46:32',600.265621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19132,12,12,'2023-02-09 10:46:32',600.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19133,12,12,'2023-02-09 10:46:32',600.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19134,12,12,'2023-02-09 10:46:32',601.276619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19135,12,12,'2023-02-09 10:46:32',601.287623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19136,12,12,'2023-02-09 10:46:32',601.705625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19137,12,12,'2023-02-09 10:46:32',601.760996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19138,12,12,'2023-02-09 10:46:32',602.297626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19139,12,12,'2023-02-09 10:46:32',602.308619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19140,12,12,'2023-02-09 10:46:32',602.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19141,12,12,'2023-02-09 10:46:32',602.758999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19142,12,12,'2023-02-09 10:46:32',603.316620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19143,12,12,'2023-02-09 10:46:32',603.327624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19144,12,12,'2023-02-09 10:46:32',603.745626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19145,12,12,'2023-02-09 10:46:32',603.764999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19146,12,12,'2023-02-09 10:46:32',604.334619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19147,12,12,'2023-02-09 10:46:32',604.345623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19148,12,12,'2023-02-09 10:46:32',604.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19149,12,12,'2023-02-09 10:46:32',604.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19150,12,12,'2023-02-09 10:46:32',605.355626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19151,12,12,'2023-02-09 10:46:32',605.366619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19152,12,12,'2023-02-09 10:46:32',605.785617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19153,12,12,'2023-02-09 10:46:32',605.805000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19154,12,12,'2023-02-09 10:46:32',606.377618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19155,12,12,'2023-02-09 10:46:32',606.388621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19156,12,12,'2023-02-09 10:46:32',606.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19157,12,12,'2023-02-09 10:46:32',606.825000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19158,12,12,'2023-02-09 10:46:32',607.394621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19159,12,12,'2023-02-09 10:46:32',607.405625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19160,12,12,'2023-02-09 10:46:32',607.825618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19161,12,12,'2023-02-09 10:46:32',607.845001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19162,12,12,'2023-02-09 10:46:32',608.416623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19163,12,12,'2023-02-09 10:46:32',608.427617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19164,12,12,'2023-02-09 10:46:32',608.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19165,12,12,'2023-02-09 10:46:32',608.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19166,12,12,'2023-02-09 10:46:32',609.437619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19167,12,12,'2023-02-09 10:46:32',609.448623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19168,12,12,'2023-02-09 10:46:32',609.865619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19169,12,12,'2023-02-09 10:46:32',609.885002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19170,12,12,'2023-02-09 10:46:32',610.456624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19171,12,12,'2023-02-09 10:46:32',610.466622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19172,12,12,'2023-02-09 10:46:32',610.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19173,12,12,'2023-02-09 10:46:32',610.941001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19174,12,12,'2023-02-09 10:46:32',611.477620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19175,12,12,'2023-02-09 10:46:32',611.488624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19176,12,12,'2023-02-09 10:46:32',611.905620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19177,12,12,'2023-02-09 10:46:32',611.925003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19178,12,12,'2023-02-09 10:46:32',612.495619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19179,12,12,'2023-02-09 10:46:32',612.506623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19180,12,12,'2023-02-09 10:46:32',612.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19181,12,12,'2023-02-09 10:46:32',612.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19182,12,12,'2023-02-09 10:46:32',613.516625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19183,12,12,'2023-02-09 10:46:32',613.527619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19184,12,12,'2023-02-09 10:46:32',613.945621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19185,12,12,'2023-02-09 10:46:32',613.964994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19186,12,12,'2023-02-09 10:46:32',614.538617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19187,12,12,'2023-02-09 10:46:32',614.549621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19188,12,12,'2023-02-09 10:46:32',614.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19189,12,12,'2023-02-09 10:46:32',614.984994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19190,12,12,'2023-02-09 10:46:32',615.555621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19191,12,12,'2023-02-09 10:46:32',615.566624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19192,12,12,'2023-02-09 10:46:32',615.985622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19193,12,12,'2023-02-09 10:46:32',616.004995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19194,12,12,'2023-02-09 10:46:32',616.577623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19195,12,12,'2023-02-09 10:46:32',616.588626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19196,12,12,'2023-02-09 10:46:32',617.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19197,12,12,'2023-02-09 10:46:32',617.024995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19198,12,12,'2023-02-09 10:46:32',617.598619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19199,12,12,'2023-02-09 10:46:32',617.609623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19200,12,12,'2023-02-09 10:46:32',618.025623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19201,12,12,'2023-02-09 10:46:32',618.044996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19202,12,12,'2023-02-09 10:46:32',618.616618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19203,12,12,'2023-02-09 10:46:32',618.627622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19204,12,12,'2023-02-09 10:46:32',619.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19205,12,12,'2023-02-09 10:46:32',619.078997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19206,12,12,'2023-02-09 10:46:32',619.637624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19207,12,12,'2023-02-09 10:46:32',619.648618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19208,12,12,'2023-02-09 10:46:32',620.065624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19209,12,12,'2023-02-09 10:46:32',620.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19210,12,12,'2023-02-09 10:46:32',620.656619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19211,12,12,'2023-02-09 10:46:32',620.666617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19212,12,12,'2023-02-09 10:46:32',621.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19213,12,12,'2023-02-09 10:46:32',621.140996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19214,12,12,'2023-02-09 10:46:32',621.678621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19215,12,12,'2023-02-09 10:46:32',621.689625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19216,12,12,'2023-02-09 10:46:32',622.105625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19217,12,12,'2023-02-09 10:46:32',622.124998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19218,12,12,'2023-02-09 10:46:32',622.695624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19219,12,12,'2023-02-09 10:46:32',622.705622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19220,12,12,'2023-02-09 10:46:32',623.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19221,12,12,'2023-02-09 10:46:32',623.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19222,12,12,'2023-02-09 10:46:32',623.717626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19223,12,12,'2023-02-09 10:46:32',623.728620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19224,12,12,'2023-02-09 10:46:32',624.145616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19225,12,12,'2023-02-09 10:46:32',624.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19226,12,12,'2023-02-09 10:46:32',624.738623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19227,12,12,'2023-02-09 10:46:32',624.749616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19228,12,12,'2023-02-09 10:46:32',625.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19229,12,12,'2023-02-09 10:46:32',625.184999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19230,12,12,'2023-02-09 10:46:32',625.756621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19231,12,12,'2023-02-09 10:46:32',625.767625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19232,12,12,'2023-02-09 10:46:32',626.185617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19233,12,12,'2023-02-09 10:46:32',626.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19234,12,12,'2023-02-09 10:46:32',626.777618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19235,12,12,'2023-02-09 10:46:32',626.788621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19236,12,12,'2023-02-09 10:46:32',627.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19237,12,12,'2023-02-09 10:46:32',627.260999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19238,12,12,'2023-02-09 10:46:32',627.795617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19239,12,12,'2023-02-09 10:46:32',627.806620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19240,12,12,'2023-02-09 10:46:32',628.225618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19241,12,12,'2023-02-09 10:46:32',628.245001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19242,12,12,'2023-02-09 10:46:32',628.816623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19243,12,12,'2023-02-09 10:46:32',628.827617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19244,12,12,'2023-02-09 10:46:32',629.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19245,12,12,'2023-02-09 10:46:32',629.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19246,12,12,'2023-02-09 10:46:32',629.835618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19247,12,12,'2023-02-09 10:46:32',629.846621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19248,12,12,'2023-02-09 10:46:32',630.265619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19249,12,12,'2023-02-09 10:46:32',630.298993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19250,12,12,'2023-02-09 10:46:32',630.856624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19251,12,12,'2023-02-09 10:46:32',630.866622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19252,12,12,'2023-02-09 10:46:32',631.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19253,12,12,'2023-02-09 10:46:32',631.305002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19254,12,12,'2023-02-09 10:46:32',631.878626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19255,12,12,'2023-02-09 10:46:32',631.889620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19256,12,12,'2023-02-09 10:46:32',632.305620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19257,12,12,'2023-02-09 10:46:32',632.325003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19258,12,12,'2023-02-09 10:46:32',632.895619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19259,12,12,'2023-02-09 10:46:32',632.906623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19260,12,12,'2023-02-09 10:46:32',633.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19261,12,12,'2023-02-09 10:46:32',633.344993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19262,12,12,'2023-02-09 10:46:32',633.917621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19263,12,12,'2023-02-09 10:46:32',633.928625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19264,12,12,'2023-02-09 10:46:32',634.345621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19265,12,12,'2023-02-09 10:46:32',634.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19266,12,12,'2023-02-09 10:46:32',634.934624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19267,12,12,'2023-02-09 10:46:32',634.945618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19268,12,12,'2023-02-09 10:46:32',635.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19269,12,12,'2023-02-09 10:46:32',635.420993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19270,12,12,'2023-02-09 10:46:32',635.956616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19271,12,12,'2023-02-09 10:46:32',635.967620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19272,12,12,'2023-02-09 10:46:32',636.385622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19273,12,12,'2023-02-09 10:46:32',636.404995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19274,12,12,'2023-02-09 10:46:32',636.974625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19275,12,12,'2023-02-09 10:46:32',636.985619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19276,12,12,'2023-02-09 10:46:32',637.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19277,12,12,'2023-02-09 10:46:32',637.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19278,12,12,'2023-02-09 10:46:32',637.996617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19279,12,12,'2023-02-09 10:46:32',638.007621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19280,12,12,'2023-02-09 10:46:32',638.425623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19281,12,12,'2023-02-09 10:46:32',638.444996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19282,12,12,'2023-02-09 10:46:32',639.018619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19283,12,12,'2023-02-09 10:46:32',639.029623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19284,12,12,'2023-02-09 10:46:32',639.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19285,12,12,'2023-02-09 10:46:32',639.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19286,12,12,'2023-02-09 10:46:32',640.034617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19287,12,12,'2023-02-09 10:46:32',640.045621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19288,12,12,'2023-02-09 10:46:32',640.465624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19289,12,12,'2023-02-09 10:46:32',640.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19290,12,12,'2023-02-09 10:46:32',641.057625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19291,12,12,'2023-02-09 10:46:32',641.068618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19292,12,12,'2023-02-09 10:46:32',641.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19293,12,12,'2023-02-09 10:46:32',641.504997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19294,12,12,'2023-02-09 10:46:32',642.074618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19295,12,12,'2023-02-09 10:46:32',642.085622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19296,12,12,'2023-02-09 10:46:32',642.505625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19297,12,12,'2023-02-09 10:46:32',642.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19298,12,12,'2023-02-09 10:46:32',643.096620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19299,12,12,'2023-02-09 10:46:32',643.107624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19300,12,12,'2023-02-09 10:46:32',643.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19301,12,12,'2023-02-09 10:46:32',643.544998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19302,12,12,'2023-02-09 10:46:32',644.117626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19303,12,12,'2023-02-09 10:46:32',644.128620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19304,12,12,'2023-02-09 10:46:32',644.545626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19305,12,12,'2023-02-09 10:46:32',644.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19306,12,12,'2023-02-09 10:46:32',645.135625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19307,12,12,'2023-02-09 10:46:32',645.146619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19308,12,12,'2023-02-09 10:46:32',645.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19309,12,12,'2023-02-09 10:46:32',645.584999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19310,12,12,'2023-02-09 10:46:32',646.156621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19311,12,12,'2023-02-09 10:46:32',646.167625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19312,12,12,'2023-02-09 10:46:32',646.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19313,12,12,'2023-02-09 10:46:32',646.619001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19314,12,12,'2023-02-09 10:46:32',647.175626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19315,12,12,'2023-02-09 10:46:32',647.185624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19316,12,12,'2023-02-09 10:46:32',647.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19317,12,12,'2023-02-09 10:46:32',647.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19318,12,12,'2023-02-09 10:46:32',648.196622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19319,12,12,'2023-02-09 10:46:32',648.206620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19320,12,12,'2023-02-09 10:46:32',648.625618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19321,12,12,'2023-02-09 10:46:32',648.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19322,12,12,'2023-02-09 10:46:32',649.218625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19323,12,12,'2023-02-09 10:46:32',649.229618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19324,12,12,'2023-02-09 10:46:32',649.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19325,12,12,'2023-02-09 10:46:32',649.701000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19326,12,12,'2023-02-09 10:46:32',650.235618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19327,12,12,'2023-02-09 10:46:32',650.246621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19328,12,12,'2023-02-09 10:46:32',650.665619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19329,12,12,'2023-02-09 10:46:32',650.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19330,12,12,'2023-02-09 10:46:32',651.257620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19331,12,12,'2023-02-09 10:46:32',651.268623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19332,12,12,'2023-02-09 10:46:32',651.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19333,12,12,'2023-02-09 10:46:32',651.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19334,12,12,'2023-02-09 10:46:32',652.278626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19335,12,12,'2023-02-09 10:46:32',652.289620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19336,12,12,'2023-02-09 10:46:32',652.705620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19337,12,12,'2023-02-09 10:46:32',652.725003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19338,12,12,'2023-02-09 10:46:32',653.297621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19339,12,12,'2023-02-09 10:46:32',653.307619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19340,12,12,'2023-02-09 10:46:32',653.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19341,12,12,'2023-02-09 10:46:32',653.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19342,12,12,'2023-02-09 10:46:32',654.314624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19343,12,12,'2023-02-09 10:46:32',654.325618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19344,12,12,'2023-02-09 10:46:32',654.745621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19345,12,12,'2023-02-09 10:46:32',654.764994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19346,12,12,'2023-02-09 10:46:32',655.335620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19347,12,12,'2023-02-09 10:46:32',655.346624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19348,12,12,'2023-02-09 10:46:32',655.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19349,12,12,'2023-02-09 10:46:32',655.821003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19350,12,12,'2023-02-09 10:46:32',656.358618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19351,12,12,'2023-02-09 10:46:32',656.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19352,12,12,'2023-02-09 10:46:32',656.785622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19353,12,12,'2023-02-09 10:46:32',656.804995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19354,12,12,'2023-02-09 10:46:32',657.375621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19355,12,12,'2023-02-09 10:46:32',657.386625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19356,12,12,'2023-02-09 10:46:32',657.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19357,12,12,'2023-02-09 10:46:32',657.838996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19358,12,12,'2023-02-09 10:46:32',658.397623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19359,12,12,'2023-02-09 10:46:32',658.408617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19360,12,12,'2023-02-09 10:46:32',658.825623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19361,12,12,'2023-02-09 10:46:32',658.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19362,12,12,'2023-02-09 10:46:32',659.418619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19363,12,12,'2023-02-09 10:46:32',659.429623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19364,12,12,'2023-02-09 10:46:32',659.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19365,12,12,'2023-02-09 10:46:32',659.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19366,12,12,'2023-02-09 10:46:32',660.436618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19367,12,12,'2023-02-09 10:46:32',660.447622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19368,12,12,'2023-02-09 10:46:32',660.865624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19369,12,12,'2023-02-09 10:46:32',660.884997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19370,12,12,'2023-02-09 10:46:32',661.457625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19371,12,12,'2023-02-09 10:46:32',661.468618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19372,12,12,'2023-02-09 10:46:32',661.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19373,12,12,'2023-02-09 10:46:32',661.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19374,12,12,'2023-02-09 10:46:32',662.475624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19375,12,12,'2023-02-09 10:46:32',662.486617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19376,12,12,'2023-02-09 10:46:32',662.905625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19377,12,12,'2023-02-09 10:46:32',662.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19378,12,12,'2023-02-09 10:46:32',663.496620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19379,12,12,'2023-02-09 10:46:32',663.507624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19380,12,12,'2023-02-09 10:46:32',663.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19381,12,12,'2023-02-09 10:46:32',663.944998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19382,12,12,'2023-02-09 10:46:32',664.514619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19383,12,12,'2023-02-09 10:46:32',664.525623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19384,12,12,'2023-02-09 10:46:32',664.945616,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19385,12,12,'2023-02-09 10:46:32',664.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19386,12,12,'2023-02-09 10:46:32',665.536621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19387,12,12,'2023-02-09 10:46:32',665.546619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19388,12,12,'2023-02-09 10:46:32',665.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19389,12,12,'2023-02-09 10:46:32',666.020998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19390,12,12,'2023-02-09 10:46:32',666.558623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19391,12,12,'2023-02-09 10:46:32',666.569617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19392,12,12,'2023-02-09 10:46:32',666.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19393,12,12,'2023-02-09 10:46:32',667.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19394,12,12,'2023-02-09 10:46:32',667.575626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19395,12,12,'2023-02-09 10:46:32',667.585624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19396,12,12,'2023-02-09 10:46:32',668.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19397,12,12,'2023-02-09 10:46:32',668.025000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19398,12,12,'2023-02-09 10:46:32',668.597618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19399,12,12,'2023-02-09 10:46:32',668.608622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19400,12,12,'2023-02-09 10:46:32',669.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19401,12,12,'2023-02-09 10:46:32',669.045001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19402,12,12,'2023-02-09 10:46:32',669.618625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19403,12,12,'2023-02-09 10:46:32',669.629618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19404,12,12,'2023-02-09 10:46:32',670.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19405,12,12,'2023-02-09 10:46:32',670.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19406,12,12,'2023-02-09 10:46:32',670.636623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19407,12,12,'2023-02-09 10:46:32',670.646621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19408,12,12,'2023-02-09 10:46:32',671.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19409,12,12,'2023-02-09 10:46:32',671.085002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19410,12,12,'2023-02-09 10:46:32',671.654622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19411,12,12,'2023-02-09 10:46:32',671.665626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19412,12,12,'2023-02-09 10:46:32',672.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19413,12,12,'2023-02-09 10:46:32',672.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19414,12,12,'2023-02-09 10:46:32',672.675619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19415,12,12,'2023-02-09 10:46:32',672.686622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19416,12,12,'2023-02-09 10:46:32',673.105620,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19417,12,12,'2023-02-09 10:46:32',673.125003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19418,12,12,'2023-02-09 10:46:32',673.698616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19419,12,12,'2023-02-09 10:46:32',673.708624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19420,12,12,'2023-02-09 10:46:32',674.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19421,12,12,'2023-02-09 10:46:32',674.158994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19422,12,12,'2023-02-09 10:46:32',674.714624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19423,12,12,'2023-02-09 10:46:32',674.725618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19424,12,12,'2023-02-09 10:46:32',675.145621,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19425,12,12,'2023-02-09 10:46:32',675.164994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19426,12,12,'2023-02-09 10:46:32',675.737622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19427,12,12,'2023-02-09 10:46:32',675.748625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19428,12,12,'2023-02-09 10:46:32',676.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19429,12,12,'2023-02-09 10:46:32',676.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19430,12,12,'2023-02-09 10:46:32',676.758618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19431,12,12,'2023-02-09 10:46:32',676.768626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19432,12,12,'2023-02-09 10:46:32',677.185622,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19433,12,12,'2023-02-09 10:46:32',677.240993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19434,12,12,'2023-02-09 10:46:32',677.776617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19435,12,12,'2023-02-09 10:46:32',677.787621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19436,12,12,'2023-02-09 10:46:32',678.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19437,12,12,'2023-02-09 10:46:32',678.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19438,12,12,'2023-02-09 10:46:32',678.797623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19439,12,12,'2023-02-09 10:46:32',678.808617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19440,12,12,'2023-02-09 10:46:32',679.225623,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19441,12,12,'2023-02-09 10:46:32',679.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19442,12,12,'2023-02-09 10:46:32',679.815622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19443,12,12,'2023-02-09 10:46:32',679.826626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19444,12,12,'2023-02-09 10:46:32',680.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19445,12,12,'2023-02-09 10:46:32',680.264996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19446,12,12,'2023-02-09 10:46:32',680.836618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19447,12,12,'2023-02-09 10:46:32',680.847622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19448,12,12,'2023-02-09 10:46:32',681.265624,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19449,12,12,'2023-02-09 10:46:32',681.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19450,12,12,'2023-02-09 10:46:32',681.854617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19451,12,12,'2023-02-09 10:46:32',681.863619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19452,12,12,'2023-02-09 10:46:32',682.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19453,12,12,'2023-02-09 10:46:32',682.304997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19454,12,12,'2023-02-09 10:46:32',682.875624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19455,12,12,'2023-02-09 10:46:32',682.889625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19456,12,12,'2023-02-09 10:46:32',683.305625,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19457,12,12,'2023-02-09 10:46:32',683.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19458,12,12,'2023-02-09 10:46:32',683.898621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19459,12,12,'2023-02-09 10:46:32',683.909625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19460,12,12,'2023-02-09 10:46:32',684.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19461,12,12,'2023-02-09 10:46:32',684.380997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19462,12,12,'2023-02-09 10:46:32',684.915625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19463,12,12,'2023-02-09 10:46:32',684.925623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19464,12,12,'2023-02-09 10:46:32',685.345626,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19465,12,12,'2023-02-09 10:46:32',685.379000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19466,12,12,'2023-02-09 10:46:32',685.937617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19467,12,12,'2023-02-09 10:46:32',685.948620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19468,12,12,'2023-02-09 10:46:32',686.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19469,12,12,'2023-02-09 10:46:32',686.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19470,12,12,'2023-02-09 10:46:32',686.958623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19471,12,12,'2023-02-09 10:46:32',686.969617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19472,12,12,'2023-02-09 10:46:32',687.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19473,12,12,'2023-02-09 10:46:32',687.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19474,12,12,'2023-02-09 10:46:32',687.976622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19475,12,12,'2023-02-09 10:46:32',687.987626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19476,12,12,'2023-02-09 10:46:32',688.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19477,12,12,'2023-02-09 10:46:32',688.425000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19478,12,12,'2023-02-09 10:46:32',688.994621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19479,13,13,'2023-02-09 11:06:27',0.668997,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19480,13,13,'2023-02-09 11:06:27',0.868342,0.000000,NULL,'2',NULL,NULL,'SESS',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19481,13,13,'2023-02-09 11:06:27',0.920343,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19482,13,13,'2023-02-09 11:06:27',2.017000,0.000000,NULL,'5',NULL,NULL,'boundary',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19483,13,13,'2023-02-09 11:06:27',5.987340,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19484,13,13,'2023-02-09 11:06:27',6.087339,0.000000,NULL,'nan',NULL,NULL,'bas+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19485,13,13,'2023-02-09 11:06:27',186.160341,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19486,13,13,'2023-02-09 11:06:27',186.210995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19487,14,14,'2023-02-09 11:12:06',0.683993,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19488,14,14,'2023-02-09 11:12:06',0.884948,0.000000,NULL,'2',NULL,NULL,'SESS',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19489,14,14,'2023-02-09 11:12:06',0.934948,0.000000,NULL,'1',NULL,NULL,'CELL',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19490,14,14,'2023-02-09 11:12:06',2.018999,0.000000,NULL,'nan',NULL,NULL,'VEnd',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19491,14,14,'2023-02-09 11:12:06',2.033000,0.000000,NULL,'5',NULL,NULL,'boundary',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19492,14,14,'2023-02-09 11:12:06',2.539994,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19493,14,14,'2023-02-09 11:12:06',4.737950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19494,14,14,'2023-02-09 11:12:06',4.746942,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19495,14,14,'2023-02-09 11:12:06',5.019994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19496,14,14,'2023-02-09 11:12:06',5.252944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19497,14,14,'2023-02-09 11:12:06',5.526992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19498,14,14,'2023-02-09 11:12:06',5.748948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19499,14,14,'2023-02-09 11:12:06',5.754943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19500,14,14,'2023-02-09 11:12:06',5.772947,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19501,14,14,'2023-02-09 11:12:06',6.046000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19502,14,14,'2023-02-09 11:12:06',6.279945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19503,14,14,'2023-02-09 11:12:06',6.552997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19504,14,14,'2023-02-09 11:12:06',6.774943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19505,14,14,'2023-02-09 11:12:06',6.788945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19506,14,14,'2023-02-09 11:12:06',6.798943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19507,14,14,'2023-02-09 11:12:06',7.073001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19508,14,14,'2023-02-09 11:12:06',7.305950,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19509,14,14,'2023-02-09 11:12:06',7.578993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19510,14,14,'2023-02-09 11:12:06',7.800949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19511,14,14,'2023-02-09 11:12:06',7.806944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19512,14,14,'2023-02-09 11:12:06',7.824948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19513,14,14,'2023-02-09 11:12:06',8.098996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19514,14,14,'2023-02-09 11:12:06',8.331946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19515,14,14,'2023-02-09 11:12:06',8.605994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19516,14,14,'2023-02-09 11:12:06',8.826944,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19517,14,14,'2023-02-09 11:12:06',8.833945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19518,14,14,'2023-02-09 11:12:06',8.851949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19519,14,14,'2023-02-09 11:12:06',9.125001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19520,14,14,'2023-02-09 11:12:06',9.357951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19521,14,14,'2023-02-09 11:12:06',9.631999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19522,14,14,'2023-02-09 11:12:06',9.852949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19523,14,14,'2023-02-09 11:12:06',9.859950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19524,14,14,'2023-02-09 11:12:06',9.877944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19525,14,14,'2023-02-09 11:12:06',10.151992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19526,14,14,'2023-02-09 11:12:06',10.383946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19527,14,14,'2023-02-09 11:12:06',10.657994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19528,14,14,'2023-02-09 11:12:06',10.878945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19529,14,14,'2023-02-09 11:12:06',10.885945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19530,14,14,'2023-02-09 11:12:06',10.903949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19531,14,14,'2023-02-09 11:12:06',11.177997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19532,14,14,'2023-02-09 11:12:06',11.410947,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19533,14,14,'2023-02-09 11:12:06',11.684000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19534,14,14,'2023-02-09 11:12:06',11.905946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19535,14,14,'2023-02-09 11:12:06',11.912946,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19536,14,14,'2023-02-09 11:12:06',11.930951,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19537,14,14,'2023-02-09 11:12:06',12.203993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19538,14,14,'2023-02-09 11:12:06',12.436943,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19539,14,14,'2023-02-09 11:12:06',12.711001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19540,14,14,'2023-02-09 11:12:06',12.931951,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19541,14,14,'2023-02-09 11:12:06',12.938951,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19542,14,14,'2023-02-09 11:12:06',12.956946,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19543,14,14,'2023-02-09 11:12:06',13.229998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19544,14,14,'2023-02-09 11:12:06',13.463944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19545,14,14,'2023-02-09 11:12:06',13.736996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19546,14,14,'2023-02-09 11:12:06',13.957946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19547,14,14,'2023-02-09 11:12:06',13.964947,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19548,14,14,'2023-02-09 11:12:06',13.982951,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19549,14,14,'2023-02-09 11:12:06',14.256999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19550,14,14,'2023-02-09 11:12:06',14.489949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19551,14,14,'2023-02-09 11:12:06',14.763001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19552,14,14,'2023-02-09 11:12:06',14.984947,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19553,14,14,'2023-02-09 11:12:06',14.991948,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19554,14,14,'2023-02-09 11:12:06',15.009942,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19555,14,14,'2023-02-09 11:12:06',15.282994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19556,14,14,'2023-02-09 11:12:06',15.515944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19557,14,14,'2023-02-09 11:12:06',15.790002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19558,14,14,'2023-02-09 11:12:06',16.010942,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19559,14,14,'2023-02-09 11:12:06',16.017943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19560,14,14,'2023-02-09 11:12:06',16.035947,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19561,14,14,'2023-02-09 11:12:06',16.309000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19562,14,14,'2023-02-09 11:12:06',16.541949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19563,14,14,'2023-02-09 11:12:06',16.815997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19564,14,14,'2023-02-09 11:12:06',17.036948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19565,14,14,'2023-02-09 11:12:06',17.043948,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19566,14,14,'2023-02-09 11:12:06',17.061943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19567,14,14,'2023-02-09 11:12:06',17.336001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19568,14,14,'2023-02-09 11:12:06',17.567945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19569,14,14,'2023-02-09 11:12:06',17.841993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19570,14,14,'2023-02-09 11:12:06',18.062943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19571,14,14,'2023-02-09 11:12:06',18.069944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19572,14,14,'2023-02-09 11:12:06',18.087948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19573,14,14,'2023-02-09 11:12:06',18.361996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19574,14,14,'2023-02-09 11:12:06',18.594946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19575,14,14,'2023-02-09 11:12:06',18.868994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19576,14,14,'2023-02-09 11:12:06',19.088948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19577,14,14,'2023-02-09 11:12:06',19.095949,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19578,14,14,'2023-02-09 11:12:06',19.113943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19579,14,14,'2023-02-09 11:12:06',19.388001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19580,14,14,'2023-02-09 11:12:06',19.620951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19581,14,14,'2023-02-09 11:12:06',19.894999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19582,14,14,'2023-02-09 11:12:06',20.115949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19583,14,14,'2023-02-09 11:12:06',20.122950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19584,14,14,'2023-02-09 11:12:06',20.140944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19585,14,14,'2023-02-09 11:12:06',20.414992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19586,14,14,'2023-02-09 11:12:06',20.646946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19587,14,14,'2023-02-09 11:12:06',20.920994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19588,14,14,'2023-02-09 11:12:06',21.141945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19589,14,14,'2023-02-09 11:12:06',21.148945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19590,14,14,'2023-02-09 11:12:06',21.166949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19591,14,14,'2023-02-09 11:12:06',21.440997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19592,14,14,'2023-02-09 11:12:06',21.673947,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19593,14,14,'2023-02-09 11:12:06',21.947995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19594,14,14,'2023-02-09 11:12:06',22.168946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19595,14,14,'2023-02-09 11:12:06',22.174950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19596,14,14,'2023-02-09 11:12:06',22.192945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19597,14,14,'2023-02-09 11:12:06',22.466993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19598,14,14,'2023-02-09 11:12:06',22.699943,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19599,14,14,'2023-02-09 11:12:06',22.974001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19600,14,14,'2023-02-09 11:12:06',23.194951,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19601,14,14,'2023-02-09 11:12:06',23.201952,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19602,14,14,'2023-02-09 11:12:06',23.219946,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19603,14,14,'2023-02-09 11:12:06',23.492998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19604,14,14,'2023-02-09 11:12:06',23.725948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19605,14,14,'2023-02-09 11:12:06',23.999996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19606,14,14,'2023-02-09 11:12:06',24.220946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19607,14,14,'2023-02-09 11:12:06',24.227947,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19608,14,14,'2023-02-09 11:12:06',24.245951,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19609,14,14,'2023-02-09 11:12:06',24.519999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19610,14,14,'2023-02-09 11:12:06',24.751943,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19611,14,14,'2023-02-09 11:12:06',25.026001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19612,14,14,'2023-02-09 11:12:06',25.246952,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19613,14,14,'2023-02-09 11:12:06',25.253942,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19614,14,14,'2023-02-09 11:12:06',25.271946,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19615,14,14,'2023-02-09 11:12:06',25.545994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19616,14,14,'2023-02-09 11:12:06',25.777948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19617,14,14,'2023-02-09 11:12:06',26.052992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19618,14,14,'2023-02-09 11:12:06',26.273943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19619,14,14,'2023-02-09 11:12:06',26.280943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19620,14,14,'2023-02-09 11:12:06',26.297942,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19621,14,14,'2023-02-09 11:12:06',26.572000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19622,14,14,'2023-02-09 11:12:06',26.804949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19623,14,14,'2023-02-09 11:12:06',27.078997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19624,14,14,'2023-02-09 11:12:06',27.299948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19625,14,14,'2023-02-09 11:12:06',27.306948,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19626,14,14,'2023-02-09 11:12:06',27.324943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19627,14,14,'2023-02-09 11:12:06',27.599001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19628,14,14,'2023-02-09 11:12:06',27.830945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19629,14,14,'2023-02-09 11:12:06',28.103997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19630,14,14,'2023-02-09 11:12:06',28.325943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19631,14,14,'2023-02-09 11:12:06',28.332944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19632,14,14,'2023-02-09 11:12:06',28.350948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19633,14,14,'2023-02-09 11:12:06',28.624996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19634,14,14,'2023-02-09 11:12:06',28.856950,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19635,14,14,'2023-02-09 11:12:06',29.130998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19636,14,14,'2023-02-09 11:12:06',29.351948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19637,14,14,'2023-02-09 11:12:06',29.358949,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19638,14,14,'2023-02-09 11:12:06',29.376943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19639,14,14,'2023-02-09 11:12:06',29.651001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19640,14,14,'2023-02-09 11:12:06',29.883951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19641,14,14,'2023-02-09 11:12:06',30.156993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19642,14,14,'2023-02-09 11:12:06',30.378949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19643,14,14,'2023-02-09 11:12:06',30.385950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19644,14,14,'2023-02-09 11:12:06',30.403944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19645,14,14,'2023-02-09 11:12:06',30.677992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19646,14,14,'2023-02-09 11:12:06',30.909946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19647,14,14,'2023-02-09 11:12:06',31.182999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19648,14,14,'2023-02-09 11:12:06',31.404945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19649,14,14,'2023-02-09 11:12:06',31.411945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19650,14,14,'2023-02-09 11:12:06',31.429950,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19651,14,14,'2023-02-09 11:12:06',31.703002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19652,14,14,'2023-02-09 11:12:06',31.935952,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19653,14,14,'2023-02-09 11:12:06',32.210000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19654,14,14,'2023-02-09 11:12:06',32.430950,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19655,14,14,'2023-02-09 11:12:06',32.437951,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19656,14,14,'2023-02-09 11:12:06',32.455945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19657,14,14,'2023-02-09 11:12:06',32.728997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19658,14,14,'2023-02-09 11:12:06',32.961947,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19659,14,14,'2023-02-09 11:12:06',33.235995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19660,14,14,'2023-02-09 11:12:06',33.456945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19661,14,14,'2023-02-09 11:12:06',33.463946,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19662,14,14,'2023-02-09 11:12:06',33.481950,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19663,14,14,'2023-02-09 11:12:06',33.755998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19664,14,14,'2023-02-09 11:12:06',33.988948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19665,14,14,'2023-02-09 11:12:06',34.262000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19666,14,14,'2023-02-09 11:12:06',34.483946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19667,14,14,'2023-02-09 11:12:06',34.490947,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19668,14,14,'2023-02-09 11:12:06',34.507945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19669,14,14,'2023-02-09 11:12:06',34.781993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19670,14,14,'2023-02-09 11:12:06',35.014943,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19671,14,14,'2023-02-09 11:12:06',35.287995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19672,14,14,'2023-02-09 11:12:06',35.509952,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19673,14,14,'2023-02-09 11:12:06',35.516942,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19674,14,14,'2023-02-09 11:12:06',35.534946,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19675,14,14,'2023-02-09 11:12:06',35.807999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19676,14,14,'2023-02-09 11:12:06',36.040948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19677,14,14,'2023-02-09 11:12:06',36.314996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19678,14,14,'2023-02-09 11:12:06',36.535947,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19679,14,14,'2023-02-09 11:12:06',36.542947,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19680,14,14,'2023-02-09 11:12:06',36.560952,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19681,14,14,'2023-02-09 11:12:06',36.833994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19682,14,14,'2023-02-09 11:12:06',37.066944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19683,14,14,'2023-02-09 11:12:06',37.341002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19684,14,14,'2023-02-09 11:12:06',37.561942,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19685,14,14,'2023-02-09 11:12:06',37.568943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19686,14,14,'2023-02-09 11:12:06',37.586947,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19687,14,14,'2023-02-09 11:12:06',37.860995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19688,14,14,'2023-02-09 11:12:06',38.093945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19689,14,14,'2023-02-09 11:12:06',38.366997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19690,14,14,'2023-02-09 11:12:06',38.588943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19691,14,14,'2023-02-09 11:12:06',38.595944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19692,14,14,'2023-02-09 11:12:06',38.613948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19693,14,14,'2023-02-09 11:12:06',38.887000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19694,14,14,'2023-02-09 11:12:06',39.119950,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19695,14,14,'2023-02-09 11:12:06',39.393998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19696,14,14,'2023-02-09 11:12:06',39.614948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19697,14,14,'2023-02-09 11:12:06',39.621949,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19698,14,14,'2023-02-09 11:12:06',39.639943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19699,14,14,'2023-02-09 11:12:06',39.912995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19700,14,14,'2023-02-09 11:12:06',40.145945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19701,14,14,'2023-02-09 11:12:06',40.419993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19702,14,14,'2023-02-09 11:12:06',40.640944,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19703,14,14,'2023-02-09 11:12:06',40.647944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19704,14,14,'2023-02-09 11:12:06',40.665949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19705,14,14,'2023-02-09 11:12:06',40.939997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19706,14,14,'2023-02-09 11:12:06',41.172946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19707,14,14,'2023-02-09 11:12:06',41.445999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19708,14,14,'2023-02-09 11:12:06',41.666949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19709,14,14,'2023-02-09 11:12:06',41.673950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19710,14,14,'2023-02-09 11:12:06',41.692950,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19711,14,14,'2023-02-09 11:12:06',41.966002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19712,14,14,'2023-02-09 11:12:06',42.198942,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19713,14,14,'2023-02-09 11:12:06',42.473000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19714,14,14,'2023-02-09 11:12:06',42.693950,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19715,14,14,'2023-02-09 11:12:06',42.700951,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19716,14,14,'2023-02-09 11:12:06',42.718945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19717,14,14,'2023-02-09 11:12:06',42.991997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19718,14,14,'2023-02-09 11:12:06',43.224947,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19719,14,14,'2023-02-09 11:12:06',43.498995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19720,14,14,'2023-02-09 11:12:06',43.719945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19721,14,14,'2023-02-09 11:12:06',43.726946,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19722,14,14,'2023-02-09 11:12:06',43.744950,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19723,14,14,'2023-02-09 11:12:06',44.018998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19724,14,14,'2023-02-09 11:12:06',44.251948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19725,14,14,'2023-02-09 11:12:06',44.525000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19726,14,14,'2023-02-09 11:12:06',44.745951,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19727,14,14,'2023-02-09 11:12:06',44.752951,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19728,14,14,'2023-02-09 11:12:06',44.770945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19729,14,14,'2023-02-09 11:12:06',45.044993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19730,14,14,'2023-02-09 11:12:06',45.277943,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19731,14,14,'2023-02-09 11:12:06',45.552001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19732,14,14,'2023-02-09 11:12:06',45.771946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19733,14,14,'2023-02-09 11:12:06',45.778946,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19734,14,14,'2023-02-09 11:12:06',45.796951,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19735,14,14,'2023-02-09 11:12:06',46.070999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19736,14,14,'2023-02-09 11:12:06',46.303949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19737,14,14,'2023-02-09 11:12:06',46.577997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19738,14,14,'2023-02-09 11:12:06',46.798947,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19739,14,14,'2023-02-09 11:12:06',46.804952,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19740,14,14,'2023-02-09 11:12:06',46.823942,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19741,14,14,'2023-02-09 11:12:06',47.096994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19742,14,14,'2023-02-09 11:12:06',47.329944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19743,14,14,'2023-02-09 11:12:06',47.604002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19744,14,14,'2023-02-09 11:12:06',47.824942,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19745,14,14,'2023-02-09 11:12:06',47.831943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19746,14,14,'2023-02-09 11:12:06',47.849947,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19747,14,14,'2023-02-09 11:12:06',48.123995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19748,14,14,'2023-02-09 11:12:06',48.356945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19749,14,14,'2023-02-09 11:12:06',48.629997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19750,14,14,'2023-02-09 11:12:06',48.851943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19751,14,14,'2023-02-09 11:12:06',48.857948,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19752,14,14,'2023-02-09 11:12:06',48.876948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19753,14,14,'2023-02-09 11:12:06',49.150000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19754,14,14,'2023-02-09 11:12:06',49.382950,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19755,14,14,'2023-02-09 11:12:06',49.656998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19756,14,14,'2023-02-09 11:12:06',49.877948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19757,14,14,'2023-02-09 11:12:06',49.883943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19758,14,14,'2023-02-09 11:12:06',49.902943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19759,14,14,'2023-02-09 11:12:06',50.175996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19760,14,14,'2023-02-09 11:12:06',50.408945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19761,14,14,'2023-02-09 11:12:06',50.682993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19762,14,14,'2023-02-09 11:12:06',50.903944,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19763,14,14,'2023-02-09 11:12:06',50.910944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19764,14,14,'2023-02-09 11:12:06',50.928949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19765,14,14,'2023-02-09 11:12:06',51.202997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19766,14,14,'2023-02-09 11:12:06',51.434951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19767,14,14,'2023-02-09 11:12:06',51.708999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19768,14,14,'2023-02-09 11:12:06',51.929949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19769,14,14,'2023-02-09 11:12:06',51.936950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19770,14,14,'2023-02-09 11:12:06',51.954944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19771,14,14,'2023-02-09 11:12:06',52.228992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19772,14,14,'2023-02-09 11:12:06',52.460946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19773,14,14,'2023-02-09 11:12:06',52.736000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19774,14,14,'2023-02-09 11:12:06',52.955944,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19775,14,14,'2023-02-09 11:12:06',52.962945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19776,14,14,'2023-02-09 11:12:06',52.980949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19777,14,14,'2023-02-09 11:12:06',53.254997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19778,14,14,'2023-02-09 11:12:06',53.487947,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19779,14,14,'2023-02-09 11:12:06',53.760999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19780,14,14,'2023-02-09 11:12:06',53.981950,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19781,14,14,'2023-02-09 11:12:06',53.988950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19782,14,14,'2023-02-09 11:12:06',54.006944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19783,14,14,'2023-02-09 11:12:06',54.281998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19784,14,14,'2023-02-09 11:12:06',54.513942,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19785,14,14,'2023-02-09 11:12:06',54.786994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19786,14,14,'2023-02-09 11:12:06',55.008951,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19787,14,14,'2023-02-09 11:12:06',55.014945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19788,14,14,'2023-02-09 11:12:06',55.033945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19789,14,14,'2023-02-09 11:12:06',55.307993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19790,14,14,'2023-02-09 11:12:06',55.539948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19791,14,14,'2023-02-09 11:12:06',55.813996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19792,14,14,'2023-02-09 11:12:06',56.034946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19793,14,14,'2023-02-09 11:12:06',56.041946,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19794,14,14,'2023-02-09 11:12:06',56.059951,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19795,14,14,'2023-02-09 11:12:06',56.333999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19796,14,14,'2023-02-09 11:12:06',56.566949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19797,14,14,'2023-02-09 11:12:06',56.840001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19798,14,14,'2023-02-09 11:12:06',57.060951,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19799,14,14,'2023-02-09 11:12:06',57.067942,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19800,14,14,'2023-02-09 11:12:06',57.086952,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19801,14,14,'2023-02-09 11:12:06',57.361000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19802,14,14,'2023-02-09 11:12:06',57.592944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19803,14,14,'2023-02-09 11:12:06',57.865996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19804,14,14,'2023-02-09 11:12:06',58.087942,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19805,14,14,'2023-02-09 11:12:06',58.094943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19806,14,14,'2023-02-09 11:12:06',58.112947,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19807,14,14,'2023-02-09 11:12:06',58.385999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19808,14,14,'2023-02-09 11:12:06',58.618949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19809,14,14,'2023-02-09 11:12:06',58.892997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19810,14,14,'2023-02-09 11:12:06',59.113947,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19811,14,14,'2023-02-09 11:12:06',59.120948,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19812,14,14,'2023-02-09 11:12:06',59.138942,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19813,14,14,'2023-02-09 11:12:06',59.411995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19814,14,14,'2023-02-09 11:12:06',59.644944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19815,14,14,'2023-02-09 11:12:06',59.918992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19816,14,14,'2023-02-09 11:12:06',60.139943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19817,14,14,'2023-02-09 11:12:06',60.146943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19818,14,14,'2023-02-09 11:12:06',60.164948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19819,14,14,'2023-02-09 11:12:06',60.438000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19820,14,14,'2023-02-09 11:12:06',60.671945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19821,14,14,'2023-02-09 11:12:06',60.944998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19822,14,14,'2023-02-09 11:12:06',61.165948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19823,14,14,'2023-02-09 11:12:06',61.172949,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19824,14,14,'2023-02-09 11:12:06',61.190943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19825,14,14,'2023-02-09 11:12:06',61.465001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19826,14,14,'2023-02-09 11:12:06',61.697951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19827,14,14,'2023-02-09 11:12:06',61.970993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19828,14,14,'2023-02-09 11:12:06',62.192949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19829,14,14,'2023-02-09 11:12:06',62.199950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19830,14,14,'2023-02-09 11:12:06',62.217944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19831,14,14,'2023-02-09 11:12:06',62.490996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19832,14,14,'2023-02-09 11:12:06',62.723946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19833,14,14,'2023-02-09 11:12:06',62.997994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19834,14,14,'2023-02-09 11:12:06',63.218944,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19835,14,14,'2023-02-09 11:12:06',63.225945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19836,14,14,'2023-02-09 11:12:06',63.243949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19837,14,14,'2023-02-09 11:12:06',63.517001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19838,14,14,'2023-02-09 11:12:06',63.749951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19839,14,14,'2023-02-09 11:12:06',64.023999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19840,14,14,'2023-02-09 11:12:06',64.244950,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19841,14,14,'2023-02-09 11:12:06',64.251950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19842,14,14,'2023-02-09 11:12:06',64.269944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19843,14,14,'2023-02-09 11:12:06',64.543992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19844,14,14,'2023-02-09 11:12:06',64.776942,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19845,14,14,'2023-02-09 11:12:06',65.049995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19846,14,14,'2023-02-09 11:12:06',65.270945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19847,14,14,'2023-02-09 11:12:06',65.277945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19848,14,14,'2023-02-09 11:12:06',65.296945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19849,14,14,'2023-02-09 11:12:06',65.569998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19850,14,14,'2023-02-09 11:12:06',65.802948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19851,14,14,'2023-02-09 11:12:06',66.076996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL); -INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19852,14,14,'2023-02-09 11:12:06',66.297946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL); +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); UNLOCK TABLES; SET FOREIGN_KEY_CHECKS=1; From 909aa3bbfad8b0fef89a4db76366263ae311de13 Mon Sep 17 00:00:00 2001 From: jeffersoncasimir <15801528+jeffersoncasimir@users.noreply.github.com> Date: Thu, 1 Feb 2024 11:39:36 -0500 Subject: [PATCH 06/10] Fix parameter order --- .../src/series/components/SeriesRenderer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ac9cb8caf85..df80a7ec875 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 @@ -121,8 +121,8 @@ type CProps = { * @param root0.timeSelection * @param root0.setCursor * @param root0.setRightPanel - * @param root0.channels * @param root0.chunksURL + * @param root0.channels * @param root0.channelMetadata * @param root0.hidden * @param root0.epochs From bac09cee384f8ec5ebe0639643603ae541bf6ac8 Mon Sep 17 00:00:00 2001 From: jeffersoncasimir <15801528+jeffersoncasimir@users.noreply.github.com> Date: Wed, 28 Feb 2024 15:53:22 -0500 Subject: [PATCH 07/10] Add proper typing to ResponsiveViewer --- .../src/series/components/ResponsiveViewer.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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 22661716963..3f49f5cb056 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 @@ -2,17 +2,18 @@ import * as R from 'ramda'; import React, {FunctionComponent, MutableRefObject} from 'react'; import {scaleLinear} from 'd3-scale'; import {withParentSize} from '@visx/responsive'; +import {WithParentSizeProps} from "@visx/responsive/lib/enhancers/withParentSize"; type CProps = { - ref: MutableRefObject, + 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, }; @@ -152,4 +153,4 @@ ResponsiveViewer.defaultProps = { }, }; -export default withParentSize(ResponsiveViewer); +export default withParentSize(ResponsiveViewer); From ec2568ea7606659b9d5bad9b60c2f59a6d5e3044 Mon Sep 17 00:00:00 2001 From: jeffersoncasimir <15801528+jeffersoncasimir@users.noreply.github.com> Date: Wed, 28 Feb 2024 15:54:39 -0500 Subject: [PATCH 08/10] Removed @ts-ignore directives --- .../src/series/components/EEGMontage.tsx | 2 -- 1 file changed, 2 deletions(-) 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 76901d0ac94..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 @@ -300,7 +300,6 @@ const EEGMontage = (
{view3D ? : From af909035c50badc59701b07d826990c6e9594489 Mon Sep 17 00:00:00 2001 From: jeffersoncasimir <15801528+jeffersoncasimir@users.noreply.github.com> Date: Wed, 28 Feb 2024 15:55:11 -0500 Subject: [PATCH 09/10] Removed @ts-ignore directive --- .../src/series/components/SeriesRenderer.tsx | 1 - 1 file changed, 1 deletion(-) 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 e0c5f50ed3a..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 @@ -1136,7 +1136,6 @@ const SeriesRenderer: FunctionComponent = ({
{ setCursor({ cursorPosition: [cursor[0], cursor[1]], From dece67f50ca63cbedf7bf9938bf26c618f2fc7c9 Mon Sep 17 00:00:00 2001 From: jeffersoncasimir <15801528+jeffersoncasimir@users.noreply.github.com> Date: Wed, 28 Feb 2024 15:59:40 -0500 Subject: [PATCH 10/10] Removed unused property --- .../src/series/components/ResponsiveViewer.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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 3f49f5cb056..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,11 +1,10 @@ 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, @@ -20,7 +19,6 @@ type CProps = { /** * * @param root0 - * @param root0.ref * @param root0.parentWidth * @param root0.parentHeight * @param root0.mouseDown @@ -32,7 +30,6 @@ type CProps = { * @param root0.chunksURL */ const ResponsiveViewer : FunctionComponent = ({ - ref, parentWidth, parentHeight, mouseDown,